public class MutablePositionVector extends MutableTypedDoubleVectorAbs<LengthUnit,PositionVector,LengthVector,MutablePositionVector,Position>
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2015-09-29 14:14:28 +0200 (Tue, 29 Sep 2015) $, @version $Revision: 73 $, by $Author: pknoppers $, initial
version Sep 5, 2015
MutableDoubleVector.Abs<U extends Unit<U>>, MutableDoubleVector.Rel<U extends Unit<U>>data| Constructor and Description |
|---|
MutablePositionVector(double[] values,
LengthUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(DoubleVectorData data,
LengthUnit unit)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(List<Double> values,
LengthUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(List<Position> values,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(Position[] values,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(SortedMap<Integer,Double> values,
LengthUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(SortedMap<Integer,Position> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
| Modifier and Type | Method and Description |
|---|---|
Position |
get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
protected MutablePositionVector |
instantiateMutableType(DoubleVectorData dvd,
LengthUnit unit)
Construct a new Absolute Mutable DoubleVector of the right type.
|
protected PositionVector |
instantiateTypeAbs(DoubleVectorData dvd,
LengthUnit unit)
Construct a new Absolute Immutable DoubleVector of the right type.
|
protected LengthVector |
instantiateTypeRel(DoubleVectorData dvd,
LengthUnit unit)
Construct a new Relative Immutable DoubleVector of the right type.
|
MutableLengthVector |
toRel()
Translate the absolute vector into a relative vector (e.g., before or after a multiplication or division).
|
ceil, copy, divideBy, floor, immutable, multiplyBy, mutable, rint, round, toDense, toSparsedecrementBy, decrementBy, decrementBy, divideBy, divideBy, incrementBy, incrementBy, incrementBy, minus, minus, multiplyBy, multiplyBy, plusassign, checkCopyOnWrite, instantiateMutableAbs, normalize, set, setCopyOnWrite, setInUnit, setSIcardinality, checkIndex, checkSize, checkSize, checkUnit, checkUnit, checkUnit, equals, getData, getInUnit, getInUnit, getSI, getStorageType, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, instantiateAbs, instantiateRel, size, toString, toString, toString, toString, zSumexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelativeclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWcardinality, getInUnit, getInUnit, getSI, getValuesInUnit, getValuesInUnit, getValuesSI, size, toString, toString, toString, toString, zSumpublic MutablePositionVector(double[] values,
LengthUnit unit,
StorageType storageType)
throws ValueException
values - double[]; the values of the entries in the new Absolute Mutable Double PositionVectorunit - U; the unit of the new Absolute Mutable Double PositionVectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullpublic MutablePositionVector(List<Double> values, LengthUnit unit, StorageType storageType) throws ValueException
values - List; the values of the entries in the new Absolute Mutable Double PositionVectorunit - U; the unit of the new Absolute Mutable Double PositionVectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullpublic MutablePositionVector(Position[] values, StorageType storageType) throws ValueException
values - DoubleScalar.Rel<U>[]; the values of the entries in the new Absolute Mutable Double PositionVectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutablePositionVector(List<Position> values, StorageType storageType) throws ValueException
values - List; the values of the entries in the new Absolute Mutable Double PositionVectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutablePositionVector(SortedMap<Integer,Position> values, int length, StorageType storageType) throws ValueException
values - DoubleScalar.Rel<U>[]; the values of the entries in the new Absolute Sparse Mutable Double
PositionVectorlength - the size of the vectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutablePositionVector(SortedMap<Integer,Double> values, LengthUnit unit, int length, StorageType storageType) throws ValueException
values - Map; the map of indexes to values of the Absolute Sparse Mutable Double PositionVectorunit - U; the unit of the new Absolute Sparse Mutable Double PositionVectorlength - the size of the vectorstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullMutablePositionVector(DoubleVectorData data, LengthUnit unit)
data - an internal data objectunit - the unitprotected final PositionVector instantiateTypeAbs(DoubleVectorData dvd, LengthUnit unit)
instantiateTypeAbs in class MutableTypedDoubleVectorAbs<LengthUnit,PositionVector,LengthVector,MutablePositionVector,Position>dvd - an internal data objectunit - the unitprotected final LengthVector instantiateTypeRel(DoubleVectorData dvd, LengthUnit unit)
instantiateTypeRel in class MutableTypedDoubleVectorAbs<LengthUnit,PositionVector,LengthVector,MutablePositionVector,Position>dvd - an internal data objectunit - the unitprotected final MutablePositionVector instantiateMutableType(DoubleVectorData dvd, LengthUnit unit)
instantiateMutableType in class MutableTypedDoubleVectorAbs<LengthUnit,PositionVector,LengthVector,MutablePositionVector,Position>dvd - an internal data objectunit - the unitpublic final Position get(int index) throws ValueException
get in interface DoubleVectorInterface<LengthUnit>get in class MutableTypedDoubleVectorAbs<LengthUnit,PositionVector,LengthVector,MutablePositionVector,Position>index - int; index of the value to retrieveValueException - when index out of range (index < 0 or index >= size())public final MutableLengthVector toRel()
Copyright © 2015–2016 Delft University of Technology. All rights reserved.