MutableDoubleMatrix.java
package org.djunits.value.vdouble.matrix;
import org.djunits.unit.Unit;
import org.djunits.value.Absolute;
import org.djunits.value.FunctionsAbs;
import org.djunits.value.FunctionsRel;
import org.djunits.value.MathFunctionsAbs;
import org.djunits.value.MathFunctionsRel;
import org.djunits.value.Relative;
import org.djunits.value.StorageType;
import org.djunits.value.ValueException;
import org.djunits.value.ValueUtil;
import org.djunits.value.vdouble.DoubleFunction;
import org.djunits.value.vdouble.DoubleMathFunctions;
import org.djunits.value.vdouble.scalar.DoubleScalar;
/**
* MutableDoubleMatrix.
* <p>
* This file was generated by the djunits value classes generator, 26 jun, 2015
* <p>
* Copyright (c) 2015-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2016-05-28 14:25:52 +0200 (Sat, 28 May 2016) $, @version $Revision: 202 $, by $Author: averbraeck $,
* initial version 26 jun, 2015 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
* @param <U> Unit; the unit of this MutableDoubleMatrix
*/
public abstract class MutableDoubleMatrix<U extends Unit<U>> extends DoubleMatrix<U> implements MutableDoubleMatrixInterface<U>
{
/** */
private static final long serialVersionUID = 20151003L;
/**
* Construct a new MutableDoubleMatrix.
* @param unit U; the unit of the new MutableDoubleMatrix
*/
protected MutableDoubleMatrix(final U unit)
{
super(unit);
}
/** If set, any modification of the data must be preceded by replacing the data with a local copy. */
private boolean copyOnWrite = false;
/**
* Retrieve the value of the copyOnWrite flag.
* @return boolean
*/
private boolean isCopyOnWrite()
{
return this.copyOnWrite;
}
/**
* Change the copyOnWrite flag.
* @param copyOnWrite boolean; the new value for the copyOnWrite flag
*/
final void setCopyOnWrite(final boolean copyOnWrite)
{
this.copyOnWrite = copyOnWrite;
}
/* ============================================================================================ */
/* ================================= ABSOLUTE IMPLEMENTATION ================================== */
/* ============================================================================================ */
/**
* ABSOLUTE implementation of MutableDoubleVector.
* @param <U> Unit the unit for which this Vector will be created
*/
public static class Abs<U extends Unit<U>> extends MutableDoubleMatrix<U> implements Absolute,
MathFunctionsAbs<MutableDoubleMatrix.Abs<U>>, FunctionsAbs<U, DoubleMatrix.Abs<U>, DoubleMatrix.Rel<U>>,
DoubleMathFunctions<MutableDoubleMatrix.Abs<U>>
{
/** */
private static final long serialVersionUID = 20151003L;
/**
* Construct a new Absolute Mutable DoubleMatrix.
* @param values double[][]; the values of the entries in the new Absolute Mutable DoubleMatrix
* @param unit U; the unit of the new Absolute Mutable DoubleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values is null
*/
public Abs(final double[][] values, final U unit, final StorageType storageType) throws ValueException
{
super(unit);
ensureRectangularAndNonEmpty(values);
this.data = DoubleMatrixData.instantiate(values, unit.getScale(), storageType);
}
/**
* Construct a new Absolute Mutable DoubleMatrix.
* @param values DoubleScalar.Abs<U>[][]; the values of the entries in the new Absolute Mutable DoubleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values has zero entries
*/
public Abs(final DoubleScalar.Abs<U>[][] values, final StorageType storageType) throws ValueException
{
super(checkUnit(values));
this.data = DoubleMatrixData.instantiate(values, storageType);
}
/**
* Construct a new Absolute Mutable DoubleMatrix.
* @param data an internal data object
* @param unit the unit
*/
Abs(final DoubleMatrixData data, final U unit)
{
super(unit);
this.data = data.copy();
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Abs<U> immutable()
{
setCopyOnWrite(true);
return instantiateAbs(getData(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Abs<U> mutable()
{
setCopyOnWrite(true);
final MutableDoubleMatrix.Abs<U> result = MutableDoubleMatrix.instantiateMutableAbs(getData(), getUnit());
result.setCopyOnWrite(true);
return result;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> copy()
{
return mutable();
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Abs<U> toDense()
{
return this.data.isDense() ? this : instantiateMutableAbs(this.data.toDense(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Abs<U> toSparse()
{
return this.data.isSparse() ? this : instantiateMutableAbs(this.data.toSparse(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleScalar.Abs<U> get(final int row, final int column) throws ValueException
{
return new DoubleScalar.Abs<U>(getInUnit(row, column, getUnit()), getUnit());
}
/**
* Increment the value by the supplied value and return the changed vector.
* @param increment DoubleMatrix.Rel<U>; amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Abs<U>
* @throws ValueException when the size of increment is not identical to the size of this
*/
public final MutableDoubleMatrix.Abs<U> incrementBy(final DoubleMatrix.Rel<U> increment) throws ValueException
{
checkCopyOnWrite();
this.data.incrementBy(increment.getData());
return this;
}
/**
* Increment the value by the supplied value and return the changed vector.
* @param increment DoubleScalar.Rel<U>; amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> incrementBy(final DoubleScalar.Rel<U> increment)
{
return incrementBy(increment.si);
}
/**
* Increment the value by the supplied constant and return the changed vector.
* @param increment amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> incrementBy(final double increment)
{
checkCopyOnWrite();
this.data.incrementBy(increment);
return this;
}
/**
* Decrement the value by the supplied value and return the changed vector.
* @param decrement DoubleMatrix.Rel<U>; amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Abs<U>
* @throws ValueException when the size of increment is not identical to the size of this
*/
public final MutableDoubleMatrix.Abs<U> decrementBy(final DoubleMatrix.Rel<U> decrement) throws ValueException
{
checkCopyOnWrite();
this.data.decrementBy(decrement.getData());
return this;
}
/**
* Decrement the value by the supplied value and return the changed vector.
* @param decrement DoubleScalar.Rel<U>; amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> decrementBy(final DoubleScalar.Rel<U> decrement)
{
return decrementBy(decrement.si);
}
/**
* Decrement the value by the supplied constant and return the changed vector.
* @param decrement amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> decrementBy(final double decrement)
{
checkCopyOnWrite();
this.data.decrementBy(decrement);
return this;
}
/**
* Multiply the values in the vector by the supplied values and return the changed vector.
* @param factors DoubleMatrix.Rel<U>; amounts by which the value is multiplied
* @return the changed MutableDoubleMatrix.Abs<U>
* @throws ValueException when the size of the factors is not identical to the size of this
*/
public final MutableDoubleMatrix.Abs<U> multiplyBy(final DoubleMatrix.Rel<U> factors) throws ValueException
{
checkCopyOnWrite();
this.data.multiplyBy(factors.getData());
return this;
}
/**
* Multiply the values in the vector by the supplied value and return the changed vector.
* @param factor DoubleScalar.Rel<U>; amount by which the values in the vector are multiplied
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> multiplyBy(final DoubleScalar.Rel<U> factor)
{
return multiplyBy(factor.si);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> multiplyBy(final double factor)
{
checkCopyOnWrite();
this.data.multiplyBy(factor);
return this;
}
/**
* Divide the values in the vector by the supplied values and return the changed vector.
* @param factors DoubleMatrix.Rel<U>; amounts by which the value is divided
* @return the changed MutableDoubleMatrix.Abs<U>
* @throws ValueException when the size of the factors is not identical to the size of this
*/
public final MutableDoubleMatrix.Abs<U> divideBy(final DoubleMatrix.Rel<U> factors) throws ValueException
{
checkCopyOnWrite();
this.data.divideBy(factors.getData());
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> divideBy(final double factor)
{
this.data.divideBy(factor);
return this;
}
/**
* Divide the values in the vector by the supplied value and return the changed vector.
* @param factor DoubleScalar.Rel<U>; amount by which the values in the vector are divided
* @return the changed MutableDoubleMatrix.Abs<U>
*/
public final MutableDoubleMatrix.Abs<U> divideBy(final DoubleScalar.Rel<U> factor)
{
return divideBy(factor.si);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Abs<U> plus(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateAbs(this.getData().plus(rel.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Abs<U> minus(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateAbs(this.getData().minus(rel.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> minus(final DoubleMatrix.Abs<U> abs) throws ValueException
{
return instantiateRel(this.getData().minus(abs.getData()), getUnit());
}
/**********************************************************************************/
/********************************** MATH METHODS **********************************/
/**********************************************************************************/
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> ceil()
{
assign(DoubleMathFunctions.CEIL);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> floor()
{
assign(DoubleMathFunctions.FLOOR);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> rint()
{
assign(DoubleMathFunctions.RINT);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Abs<U> round()
{
assign(DoubleMathFunctions.ROUND);
return this;
}
}
/* ============================================================================================ */
/* ================================= RELATIVE IMPLEMENTATION ================================== */
/* ============================================================================================ */
/**
* RELATIVE implementation of MutableDoubleMatrix.
* @param <U> Unit the unit for which this Matrix will be created
*/
public static class Rel<U extends Unit<U>> extends MutableDoubleMatrix<U> implements Relative,
MathFunctionsRel<MutableDoubleMatrix.Rel<U>>, FunctionsRel<U, DoubleMatrix.Abs<U>, DoubleMatrix.Rel<U>>,
DoubleMathFunctions<MutableDoubleMatrix.Rel<U>>
{
/** */
private static final long serialVersionUID = 20151003L;
/**
* Construct a new Relative Mutable DoubleMatrix.
* @param values double[][]; the values of the entries in the new Relative Mutable DoubleMatrix
* @param unit U; the unit of the new Relative Mutable DoubleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values is null
*/
public Rel(final double[][] values, final U unit, final StorageType storageType) throws ValueException
{
super(unit);
ensureRectangularAndNonEmpty(values);
this.data = DoubleMatrixData.instantiate(values, unit.getScale(), storageType);
}
/**
* Construct a new Relative Mutable DoubleMatrix.
* @param values DoubleScalar.Rel<U>[]; the values of the entries in the new Relative Mutable DoubleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values has zero entries
*/
public Rel(final DoubleScalar.Rel<U>[][] values, final StorageType storageType) throws ValueException
{
super(checkUnit(values));
this.data = DoubleMatrixData.instantiate(values, storageType);
}
/**
* Construct a new Relative Mutable DoubleMatrix.
* @param data an internal data object
* @param unit the unit
*/
Rel(final DoubleMatrixData data, final U unit)
{
super(unit);
this.data = data.copy();
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> immutable()
{
setCopyOnWrite(true);
return instantiateRel(getData(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Rel<U> mutable()
{
setCopyOnWrite(true);
final MutableDoubleMatrix.Rel<U> result = new MutableDoubleMatrix.Rel<U>(getData(), getUnit());
result.setCopyOnWrite(true);
return result;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> copy()
{
return mutable();
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Rel<U> toDense()
{
return this.data.isDense() ? this : new MutableDoubleMatrix.Rel<U>(this.data.toDense(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public MutableDoubleMatrix.Rel<U> toSparse()
{
return this.data.isSparse() ? this : new MutableDoubleMatrix.Rel<U>(this.data.toSparse(), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleScalar.Rel<U> get(final int row, final int column) throws ValueException
{
return new DoubleScalar.Rel<U>(getInUnit(row, column, getUnit()), getUnit());
}
/**
* Increment the value by the supplied value and return the changed vector.
* @param increment DoubleMatrix.Rel<U>; amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Rel<U>
* @throws ValueException when the size of increment is not identical to the size of this
*/
public final MutableDoubleMatrix.Rel<U> incrementBy(final DoubleMatrix.Rel<U> increment) throws ValueException
{
checkCopyOnWrite();
this.data.incrementBy(increment.getData());
return this;
}
/**
* Increment the value by the supplied value and return the changed vector.
* @param increment DoubleScalar.Rel<U>; amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> incrementBy(final DoubleScalar.Rel<U> increment)
{
return incrementBy(increment.si);
}
/**
* Increment the value by the supplied constant and return the changed vector.
* @param increment amount by which the value is incremented
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> incrementBy(final double increment)
{
checkCopyOnWrite();
this.data.incrementBy(increment);
return this;
}
/**
* Decrement the value by the supplied value and return the changed vector.
* @param decrement DoubleMatrix.Rel<U>; amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Rel<U>
* @throws ValueException when the size of increment is not identical to the size of this
*/
public final MutableDoubleMatrix.Rel<U> decrementBy(final DoubleMatrix.Rel<U> decrement) throws ValueException
{
checkCopyOnWrite();
this.data.decrementBy(decrement.getData());
return this;
}
/**
* Decrement the value by the supplied value and return the changed vector.
* @param decrement DoubleScalar.Rel<U>; amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> decrementBy(final DoubleScalar.Rel<U> decrement)
{
return decrementBy(decrement.si);
}
/**
* Decrement the value by the supplied constant and return the changed vector.
* @param decrement amount by which the value is decremented
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> decrementBy(final double decrement)
{
checkCopyOnWrite();
this.data.decrementBy(decrement);
return this;
}
/**
* Multiply the values in the vector by the supplied values and return the changed vector.
* @param factors DoubleMatrix.Rel<U>; amounts by which the value is multiplied
* @return the changed MutableDoubleMatrix.Rel<U>
* @throws ValueException when the size of the factors is not identical to the size of this
*/
public final MutableDoubleMatrix.Rel<U> multiplyBy(final DoubleMatrix.Rel<U> factors) throws ValueException
{
checkCopyOnWrite();
this.data.multiplyBy(factors.getData());
return this;
}
/**
* Multiply the values in the vector by the supplied value and return the changed vector.
* @param factor DoubleScalar.Rel<U>; amount by which the values in the vector are multiplied
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> multiplyBy(final DoubleScalar.Rel<U> factor)
{
return multiplyBy(factor.si);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> multiplyBy(final double factor)
{
checkCopyOnWrite();
this.data.multiplyBy(factor);
return this;
}
/**
* Divide the values in the vector by the supplied values and return the changed vector.
* @param factors DoubleMatrix.Rel<U>; amounts by which the value is divided
* @return the changed MutableDoubleMatrix.Rel<U>
* @throws ValueException when the size of the factors is not identical to the size of this
*/
public final MutableDoubleMatrix.Rel<U> divideBy(final DoubleMatrix.Rel<U> factors) throws ValueException
{
checkCopyOnWrite();
this.data.divideBy(factors.getData());
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> divideBy(final double factor)
{
this.data.divideBy(factor);
return this;
}
/**
* Divide the values in the vector by the supplied value and return the changed vector.
* @param factor DoubleScalar.Rel<U>; amount by which the values in the vector are divided
* @return the changed MutableDoubleMatrix.Rel<U>
*/
public final MutableDoubleMatrix.Rel<U> divideBy(final DoubleScalar.Rel<U> factor)
{
return divideBy(factor.si);
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> plus(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateRel(this.getData().plus(rel.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Abs<U> plus(final DoubleMatrix.Abs<U> abs) throws ValueException
{
return instantiateAbs(this.getData().plus(abs.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> minus(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateRel(this.getData().minus(rel.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> times(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateRel(this.getData().times(rel.getData()), getUnit());
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("designforextension")
public DoubleMatrix.Rel<U> divide(final DoubleMatrix.Rel<U> rel) throws ValueException
{
return instantiateRel(this.getData().divide(rel.getData()), getUnit());
}
/**********************************************************************************/
/********************************** MATH METHODS **********************************/
/**********************************************************************************/
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> abs()
{
assign(DoubleMathFunctions.ABS);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> ceil()
{
assign(DoubleMathFunctions.CEIL);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> floor()
{
assign(DoubleMathFunctions.FLOOR);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> rint()
{
assign(DoubleMathFunctions.RINT);
return this;
}
/** {@inheritDoc} */
@Override
@SuppressWarnings("checkstyle:designforextension")
public MutableDoubleMatrix.Rel<U> round()
{
assign(DoubleMathFunctions.ROUND);
return this;
}
}
/**********************************************************************************/
/******************************** ABS + REL METHODS *******************************/
/**********************************************************************************/
/**
* Instantiate a matrix based on the type of data.
* @param dmData the DoubleMatrixData
* @param unit the unit to use
* @param <U> the unit
* @return an instantiated vector
*/
static <U extends Unit<U>> MutableDoubleMatrix.Abs<U> instantiateMutableAbs(final DoubleMatrixData dmData, final U unit)
{
return new MutableDoubleMatrix.Abs<U>(dmData, unit);
}
/**
* Check the copyOnWrite flag and, if it is set, make a deep copy of the data and clear the flag.
*/
protected final void checkCopyOnWrite()
{
if (isCopyOnWrite())
{
this.data = this.data.copy();
setCopyOnWrite(false);
}
}
/** {@inheritDoc} */
@Override
public final void setSI(final int row, final int column, final double valueSI) throws ValueException
{
checkIndex(row, column);
checkCopyOnWrite();
this.data.setSI(row, column, valueSI);
}
/** {@inheritDoc} */
@Override
public final void set(final int row, final int column, final DoubleScalar<U> value) throws ValueException
{
setSI(row, column, value.getSI());
}
/** {@inheritDoc} */
@Override
public final void setInUnit(final int row, final int column, final double value, final U valueUnit) throws ValueException
{
setSI(row, column, ValueUtil.expressAsSIUnit(value, valueUnit));
}
/**
* Execute a function on a cell by cell basis. Note: because many functions have to act on zero cells or can generate cells
* with a zero value, the functions have to be applied on a dense dataset which has to be transformed back to a dense
* dataset if necessary.
* @param doubleFunction the function to apply
*/
public final void assign(final DoubleFunction doubleFunction)
{
checkCopyOnWrite();
if (this.data instanceof DoubleMatrixDataDense)
{
((DoubleMatrixDataDense) this.data).assign(doubleFunction);
}
else
{
DoubleMatrixDataDense dvmd = ((DoubleMatrixDataSparse) this.data).toDense();
dvmd.assign(doubleFunction);
this.data = dvmd.toSparse();
}
}
/** {@inheritDoc} */
@Override
public final void normalize() throws ValueException
{
double sum = zSum();
if (0 == sum)
{
throw new ValueException("zSum is 0; cannot normalize");
}
checkCopyOnWrite();
this.data.divideBy(sum);
}
}