public class MutableFloatElectricalResistanceVector extends AbstractMutableFloatVectorRel<ElectricalResistanceUnit,FloatElectricalResistanceVector,MutableFloatElectricalResistanceVector,FloatElectricalResistance>
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.
AbstractFloatVectorRel.Itrdata| Constructor and Description |
|---|
MutableFloatElectricalResistanceVector(float[] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
MutableFloatElectricalResistanceVector(FloatElectricalResistance[] values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
MutableFloatElectricalResistanceVector(FloatVectorData data,
ElectricalResistanceUnit unit) |
MutableFloatElectricalResistanceVector(List<Float> values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
MutableFloatElectricalResistanceVector(List<FloatElectricalResistance> values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
MutableFloatElectricalResistanceVector(SortedMap<Integer,Float> values,
ElectricalResistanceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
MutableFloatElectricalResistanceVector(SortedMap<Integer,FloatElectricalResistance> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalResistanceVector.
|
| Modifier and Type | Method and Description |
|---|---|
protected MutableFloatElectricalResistanceVector |
instantiateMutableType(FloatVectorData dvd,
ElectricalResistanceUnit unit)
Construct a new Relative Mutable FloatVector of the right type.
|
protected FloatElectricalResistance |
instantiateScalar(float value,
ElectricalResistanceUnit unit)
Construct a new Relative Immutable FloatScalar of the right type.
|
protected FloatElectricalResistanceVector |
instantiateType(FloatVectorData dvd,
ElectricalResistanceUnit unit)
Construct a new Relative Immutable FloatVector of the right type.
|
FloatElectricalResistance[] |
toArray()
Return an array of FloatElectricalResistance Scalars from this vector.
|
MutableFloatElectricalResistanceVector |
toDense()
return a dense version of this vector.
|
MutableFloatElectricalResistanceVector |
toSparse()
return a sparse version of this vector.
|
abs, assign, ceil, checkCopyOnWrite, copy, decrementBy, decrementBy, decrementBy, divideBy, divideBy, divideBy, floor, immutable, incrementBy, incrementBy, incrementBy, multiplyBy, multiplyBy, multiplyBy, mutable, neg, normalize, rint, round, set, setCopyOnWrite, setInUnit, setSIcheckUnit, checkUnit, checkUnit, divide, get, iterator, minus, plus, timescardinality, checkIndex, checkSize, checkSize, equals, getData, getInUnit, getInUnit, getSI, getStorageType, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, size, toString, toString, toString, toString, zSumexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelative, setDisplayUnitclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWcardinality, getInUnit, getInUnit, getSI, getValuesInUnit, getValuesInUnit, getValuesSI, size, toString, toString, toString, toString, zSumforEach, spliteratorpublic MutableFloatElectricalResistanceVector(float[] values,
ElectricalResistanceUnit unit,
StorageType storageType)
throws ValueException
values - float[]; the values of the entries in the new Relative Immutable Float ElectricalResistanceVectorunit - ElectricalResistanceUnit; the unit of the new Relative Immutable Float ElectricalResistanceVectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullpublic MutableFloatElectricalResistanceVector(List<Float> values, ElectricalResistanceUnit unit, StorageType storageType) throws ValueException
values - List<Float>; the values of the entries in the new Relative Immutable Float ElectricalResistanceVectorunit - ElectricalResistanceUnit; the unit of the new Relative Immutable Float ElectricalResistanceVectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullpublic MutableFloatElectricalResistanceVector(FloatElectricalResistance[] values, StorageType storageType) throws ValueException
values - FloatElectricalResistance[]; the values of the entries in the new Relative Immutable Float
ElectricalResistanceVectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutableFloatElectricalResistanceVector(List<FloatElectricalResistance> values, StorageType storageType) throws ValueException
values - List<FloatElectricalResistance>; the values of the entries in the new Relative Immutable Float
ElectricalResistanceVectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutableFloatElectricalResistanceVector(SortedMap<Integer,FloatElectricalResistance> values, int length, StorageType storageType) throws ValueException
values - SortedMap<Integer, FloatElectricalResistance>; the values of the entries in the new Relative Sparse
Mutable Float ElectricalResistanceVectorlength - int; the size of the vectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriespublic MutableFloatElectricalResistanceVector(SortedMap<Integer,Float> values, ElectricalResistanceUnit unit, int length, StorageType storageType) throws ValueException
values - SortedMap<Integer, Float>; the map of indexes to values of the Relative Sparse Mutable Float
ElectricalResistanceVectorunit - ElectricalResistanceUnit; the unit of the new Relative Sparse Mutable Float ElectricalResistanceVectorlength - int; the size of the vectorstorageType - StorageType; the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullMutableFloatElectricalResistanceVector(FloatVectorData data, ElectricalResistanceUnit unit)
data - FloatVectorData; an internal data objectunit - ElectricalResistanceUnit; the unitprotected final FloatElectricalResistanceVector instantiateType(FloatVectorData dvd, ElectricalResistanceUnit unit)
instantiateType in class AbstractFloatVectorRel<ElectricalResistanceUnit,FloatElectricalResistanceVector,MutableFloatElectricalResistanceVector,FloatElectricalResistance>dvd - FloatVectorData; an internal data objectunit - U; the unitprotected final MutableFloatElectricalResistanceVector instantiateMutableType(FloatVectorData dvd, ElectricalResistanceUnit unit)
instantiateMutableType in class AbstractFloatVectorRel<ElectricalResistanceUnit,FloatElectricalResistanceVector,MutableFloatElectricalResistanceVector,FloatElectricalResistance>dvd - FloatVectorData; an internal data objectunit - U; the unitprotected final FloatElectricalResistance instantiateScalar(float value, ElectricalResistanceUnit unit)
instantiateScalar in class AbstractFloatVectorRel<ElectricalResistanceUnit,FloatElectricalResistanceVector,MutableFloatElectricalResistanceVector,FloatElectricalResistance>value - float; the valueunit - U; the unitpublic final MutableFloatElectricalResistanceVector toDense()
public final MutableFloatElectricalResistanceVector toSparse()
public FloatElectricalResistance[] toArray()
RuntimeException - wrapping a ValueException on error getting one of the valuesCopyright © 2015–2019 Delft University of Technology. All rights reserved.