public class TorqueVector extends AbstractDoubleVectorRel<TorqueUnit,TorqueVector,MutableTorqueVector,Torque>
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
AbstractDoubleVectorRel.Itr
data
Constructor and Description |
---|
TorqueVector(double[] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
TorqueVector(DoubleVectorData data,
TorqueUnit unit) |
TorqueVector(List<Double> values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
TorqueVector(List<Torque> values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
TorqueVector(SortedMap<Integer,Double> values,
TorqueUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
TorqueVector(SortedMap<Integer,Torque> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
TorqueVector(Torque[] values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
Modifier and Type | Method and Description |
---|---|
protected MutableTorqueVector |
instantiateMutableType(DoubleVectorData dvd,
TorqueUnit unit)
Construct a new Relative Mutable DoubleVector of the right type.
|
protected Torque |
instantiateScalar(double value,
TorqueUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected TorqueVector |
instantiateType(DoubleVectorData dvd,
TorqueUnit unit)
Construct a new Relative Immutable DoubleVector of the right type.
|
Torque[] |
toArray()
Return an array of Torque Scalars from this vector.
|
TorqueVector |
toDense()
return a dense version of this vector.
|
TorqueVector |
toSparse()
return a sparse version of this vector.
|
checkUnit, checkUnit, checkUnit, divide, get, iterator, minus, mutable, plus, times
cardinality, checkIndex, checkSize, checkSize, equals, getData, getInUnit, getInUnit, getSI, getStorageType, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, size, toString, toString, toString, toString, zSum
expressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelative, setDisplayUnit
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
forEach, spliterator
public TorqueVector(double[] values, TorqueUnit unit, StorageType storageType) throws ValueException
values
- double[]; the values of the entries in the new Relative Immutable Double TorqueVectorunit
- TorqueUnit; the unit of the new Relative Immutable Double TorqueVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic TorqueVector(List<Double> values, TorqueUnit unit, StorageType storageType) throws ValueException
values
- List<Double>; the values of the entries in the new Relative Immutable Double TorqueVectorunit
- TorqueUnit; the unit of the new Relative Immutable Double TorqueVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic TorqueVector(Torque[] values, StorageType storageType) throws ValueException
values
- Torque[]; the values of the entries in the new Relative Immutable Double TorqueVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TorqueVector(List<Torque> values, StorageType storageType) throws ValueException
values
- List<Torque>; the values of the entries in the new Relative Immutable Double TorqueVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TorqueVector(SortedMap<Integer,Torque> values, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Torque>; the values of the entries in the new Relative Sparse Mutable Double
TorqueVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TorqueVector(SortedMap<Integer,Double> values, TorqueUnit unit, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Double>; the map of indexes to values of the Relative Sparse Mutable Double
TorqueVectorunit
- TorqueUnit; the unit of the new Relative Sparse Mutable Double TorqueVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullTorqueVector(DoubleVectorData data, TorqueUnit unit)
data
- DoubleVectorData; an internal data objectunit
- TorqueUnit; the unitprotected final TorqueVector instantiateType(DoubleVectorData dvd, TorqueUnit unit)
instantiateType
in class AbstractDoubleVectorRel<TorqueUnit,TorqueVector,MutableTorqueVector,Torque>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final MutableTorqueVector instantiateMutableType(DoubleVectorData dvd, TorqueUnit unit)
instantiateMutableType
in class AbstractDoubleVectorRel<TorqueUnit,TorqueVector,MutableTorqueVector,Torque>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final Torque instantiateScalar(double value, TorqueUnit unit)
instantiateScalar
in class AbstractDoubleVectorRel<TorqueUnit,TorqueVector,MutableTorqueVector,Torque>
value
- double; the valueunit
- U; the unitpublic final TorqueVector toDense()
public final TorqueVector toSparse()
public Torque[] toArray()
RuntimeException
- wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.