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