public class TemperatureVector extends AbstractDoubleVectorRel<TemperatureUnit,TemperatureVector,MutableTemperatureVector,Temperature>
Copyright (c) 2013-2019 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
AbstractDoubleVectorRel.Itr
data
Constructor and Description |
---|
TemperatureVector(double[] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(DoubleVectorData data,
TemperatureUnit unit)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(List<Double> values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(List<Temperature> values,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(SortedMap<Integer,Temperature> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
TemperatureVector(Temperature[] values,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureVector.
|
Modifier and Type | Method and Description |
---|---|
protected MutableTemperatureVector |
instantiateMutableType(DoubleVectorData dvd,
TemperatureUnit unit)
Construct a new Relative Mutable DoubleVector of the right type.
|
protected Temperature |
instantiateScalar(double value,
TemperatureUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected TemperatureVector |
instantiateType(DoubleVectorData dvd,
TemperatureUnit unit)
Construct a new Relative Immutable DoubleVector of the right type.
|
Temperature[] |
toArray()
Return an array of Temperature Scalars from this vector.
|
TemperatureVector |
toDense()
return a dense version of this vector.
|
TemperatureVector |
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 TemperatureVector(double[] values, TemperatureUnit unit, StorageType storageType) throws ValueException
values
- double[]; the values of the entries in the new Relative Immutable Double TemperatureVectorunit
- TemperatureUnit; the unit of the new Relative Immutable Double TemperatureVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic TemperatureVector(List<Double> values, TemperatureUnit unit, StorageType storageType) throws ValueException
values
- List<Double>; the values of the entries in the new Relative Immutable Double TemperatureVectorunit
- TemperatureUnit; the unit of the new Relative Immutable Double TemperatureVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullpublic TemperatureVector(Temperature[] values, StorageType storageType) throws ValueException
values
- Temperature[]; the values of the entries in the new Relative Immutable Double TemperatureVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TemperatureVector(List<Temperature> values, StorageType storageType) throws ValueException
values
- List<Temperature>; the values of the entries in the new Relative Immutable Double TemperatureVectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TemperatureVector(SortedMap<Integer,Temperature> values, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Temperature>; the values of the entries in the new Relative Sparse Mutable Double
TemperatureVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values has zero entriespublic TemperatureVector(SortedMap<Integer,Double> values, TemperatureUnit unit, int length, StorageType storageType) throws ValueException
values
- SortedMap<Integer, Double>; the map of indexes to values of the Relative Sparse Mutable Double
TemperatureVectorunit
- TemperatureUnit; the unit of the new Relative Sparse Mutable Double TemperatureVectorlength
- int; the size of the vectorstorageType
- StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException
- when values is nullTemperatureVector(DoubleVectorData data, TemperatureUnit unit)
data
- DoubleVectorData; an internal data objectunit
- TemperatureUnit; the unitprotected final TemperatureVector instantiateType(DoubleVectorData dvd, TemperatureUnit unit)
instantiateType
in class AbstractDoubleVectorRel<TemperatureUnit,TemperatureVector,MutableTemperatureVector,Temperature>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final MutableTemperatureVector instantiateMutableType(DoubleVectorData dvd, TemperatureUnit unit)
instantiateMutableType
in class AbstractDoubleVectorRel<TemperatureUnit,TemperatureVector,MutableTemperatureVector,Temperature>
dvd
- DoubleVectorData; an internal data objectunit
- U; the unitprotected final Temperature instantiateScalar(double value, TemperatureUnit unit)
instantiateScalar
in class AbstractDoubleVectorRel<TemperatureUnit,TemperatureVector,MutableTemperatureVector,Temperature>
value
- double; the valueunit
- U; the unitpublic final TemperatureVector toDense()
public final TemperatureVector toSparse()
public Temperature[] toArray()
RuntimeException
- wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.