Package | Description |
---|---|
org.djunits.value |
Base classes for unit-based 0-d (Scalar), 1-d (Vector) and 2-d (Matrix) values.
|
org.djunits.value.vdouble.matrix |
Double Matrix storage and calculations with units, absolute/relative, sparse/dense.
|
org.djunits.value.vdouble.vector |
Double Vector storage and calculations with units, absolute/relative, sparse/dense.
|
org.djunits.value.vfloat.matrix |
Float Matrix storage and calculations with units, absolute/relative, sparse/dense.
|
org.djunits.value.vfloat.vector |
Float Vector storage and calculations with units, absolute/relative, sparse/dense.
|
Modifier and Type | Method and Description |
---|---|
R |
FunctionsRel.divide(R rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
R |
FunctionsAbs.minus(A abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
R |
FunctionsRel.minus(R rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
A |
FunctionsAbs.minus(R rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
A |
FunctionsRel.plus(A abs)
Add an Absolute value to this Relative value for a vector or matrix.
|
R |
FunctionsRel.plus(R rel)
Add a Relative value to this Relative value for a vector or matrix.
|
A |
FunctionsAbs.plus(R rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
R |
FunctionsRel.times(R rel)
Multiply a Relative value by this Relative value for a vector or matrix.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractDoubleMatrix.checkIndex(int row,
int column)
Check that provided row and column indices are valid.
|
protected void |
AbstractDoubleMatrix.checkSize(AbstractDoubleMatrixRel<?,?,?,?> other)
Centralized size equality check.
|
protected void |
AbstractDoubleMatrix.checkSize(double[][] other)
Centralized size equality check.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractDoubleScalarAbs<AU,S,RU,?>> |
AbstractDoubleMatrixAbs.checkUnit(S[][] dsArray)
Check that a provided array can be used to create some descendant of a DoubleMatrix, and return the Unit.
|
(package private) static <U extends Unit<U>,S extends AbstractDoubleScalarRel<U,S>> |
AbstractDoubleMatrixRel.checkUnit(S[][] dsArray)
Check that a provided array can be used to create some descendant of a DoubleMatrix, and return the Unit.
|
void |
DoubleMatrixDataSparse.decrementBy(DoubleMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
void |
DoubleMatrixDataDense.decrementBy(DoubleMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
abstract void |
DoubleMatrixData.decrementBy(DoubleMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleMatrixRel.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed matrix.
|
MA |
AbstractMutableDoubleMatrixAbs.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed matrix.
|
double |
DoubleMatrixInterface.determinant()
Compute the determinant of the matrix.
|
double |
AbstractDoubleMatrix.determinant()
Compute the determinant of the matrix.
|
(package private) static <U extends Unit<U>> |
DoubleMatrix.divide(DoubleMatrix.Rel<U> left,
DoubleMatrix.Rel<U> right)
Divide the content of two matrices with a static method on a cell-by-cell basis; Rel / Rel = Rel.
|
DoubleMatrixData |
DoubleMatrixData.divide(DoubleMatrixData right)
Divide two matrices on a cell-by-cell basis.
|
R |
AbstractDoubleMatrixRel.divide(R rel)
Divide this Relative value by a Relative value for a matrix or matrix.
|
void |
DoubleMatrixDataSparse.divideBy(DoubleMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
void |
DoubleMatrixDataDense.divideBy(DoubleMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
abstract void |
DoubleMatrixData.divideBy(DoubleMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleMatrixRel.divideBy(R factors)
Divide the values in the matrix by the supplied values and return the changed matrix.
|
protected static double[][] |
AbstractDoubleMatrix.ensureRectangularAndNonEmpty(double[][] values)
Check that a 2D array of double is not null and rectangular; i.e.
|
protected static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractDoubleScalarAbs<AU,S,RU,?>> |
AbstractDoubleMatrixAbs.ensureRectangularAndNonEmpty(S[][] values)
Check that a 2D array of DoubleScalar<?> is rectangular; i.e.
|
protected static <U extends Unit<U>,S extends AbstractDoubleScalarRel<U,S>> |
AbstractDoubleMatrixRel.ensureRectangularAndNonEmpty(S[][] values)
Check that a 2D array of DoubleScalar<?> is rectangular; i.e.
|
AbstractDoubleScalar<U,?> |
DoubleMatrixInterface.get(int row,
int column)
Retrieve a value from the matrix.
|
S |
AbstractDoubleMatrixRel.get(int row,
int column)
Retrieve a value from the matrix.
|
S |
AbstractDoubleMatrixAbs.get(int row,
int column)
Retrieve a value from the matrix.
|
double |
DoubleMatrixInterface.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
double |
AbstractDoubleMatrix.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
double |
DoubleMatrixInterface.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
double |
AbstractDoubleMatrix.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
double |
DoubleMatrixInterface.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
double |
AbstractDoubleMatrix.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
void |
DoubleMatrixDataSparse.incrementBy(DoubleMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
void |
DoubleMatrixDataDense.incrementBy(DoubleMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
abstract void |
DoubleMatrixData.incrementBy(DoubleMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleMatrixRel.incrementBy(R increment)
Increment the value by the supplied value and return the changed matrix.
|
MA |
AbstractMutableDoubleMatrixAbs.incrementBy(R increment)
Increment the value by the supplied value and return the changed matrix.
|
static DoubleMatrixDataSparse |
DoubleMatrixDataSparse.instantiate(double[][] valuesSI)
Instantiate a DoubleMatrixDataSparse from an array.
|
static DoubleMatrixData |
DoubleMatrixData.instantiate(double[][] values,
Scale scale,
StorageType storageType)
Instantiate a DoubleMatrixData with the right data type.
|
static <U extends Unit<U>,S extends AbstractDoubleMatrix<U,S>> |
DoubleMatrixUtil.instantiate(double[][] value,
U unit,
StorageType storageType)
Instantiate the DoubleMatrix based on its unit.
|
static DoubleMatrixData |
DoubleMatrixData.instantiate(DoubleScalarInterface[][] values,
StorageType storageType)
Instantiate a DoubleMatrixData with the right data type.
|
static <S extends AbstractDoubleMatrix<?,S>> |
DoubleMatrixUtil.instantiateAnonymous(double[][] value,
Unit<?> unit,
StorageType storageType)
Instantiate the DoubleMatrix based on its unit.
|
static <S extends AbstractDoubleMatrix<?,S>> |
DoubleMatrixUtil.instantiateAnonymousSI(double[][] si,
Unit<?> displayUnit,
StorageType storageType)
Instantiate the DoubleMatrix based on its unit.
|
static <U extends Unit<U>,S extends AbstractDoubleMatrix<U,S>> |
DoubleMatrixUtil.instantiateSI(double[][] si,
U displayUnit,
StorageType storageType)
Instantiate the DoubleMatrix based on its unit.
|
R |
AbstractDoubleMatrixAbs.minus(A abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
DoubleMatrix.minus(DoubleMatrix.Abs<AU,RU> left,
DoubleMatrix.Abs<AU,RU> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Abs - Abs = Rel.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
DoubleMatrix.minus(DoubleMatrix.Abs<AU,RU> left,
DoubleMatrix.Rel<RU> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Abs - Rel = Abs.
|
(package private) static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Rel<U> left,
DoubleMatrix.Rel<U> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Rel - Rel = Rel.
|
DoubleMatrixData |
DoubleMatrixData.minus(DoubleMatrixData right)
Subtract two matrices on a cell-by-cell basis.
|
R |
AbstractDoubleMatrixRel.minus(R rel)
Subtract a Relative value from this Relative value for a matrix or matrix.
|
A |
AbstractDoubleMatrixAbs.minus(R rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
void |
DoubleMatrixDataSparse.multiplyBy(DoubleMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
void |
DoubleMatrixDataDense.multiplyBy(DoubleMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
abstract void |
DoubleMatrixData.multiplyBy(DoubleMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleMatrixRel.multiplyBy(R factors)
Multiply the values in the matrix by the supplied values and return the changed matrix.
|
MA |
AbstractMutableDoubleMatrixAbs.multiplyBy(R factors)
Multiply the values in the matrix by the supplied values and return the changed matrix.
|
void |
AbstractMutableDoubleMatrixRel.normalize()
Normalize the matrix, i.e.
|
void |
AbstractMutableDoubleMatrixAbs.normalize()
Normalize the matrix, i.e.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
DoubleMatrix.plus(DoubleMatrix.Abs<AU,RU> left,
DoubleMatrix.Rel<RU> right)
Add the content of two matrices with a static method on a cell-by-cell basis; Abs + Rel = Abs.
|
(package private) static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Rel<U> left,
DoubleMatrix.Rel<U> right)
Add the content of two matrices with a static method on a cell-by-cell basis; Rel + Rel = Rel.
|
DoubleMatrixData |
DoubleMatrixData.plus(DoubleMatrixData right)
Add two matrices on a cell-by-cell basis.
|
R |
AbstractDoubleMatrixRel.plus(R rel)
Add a Relative value to this Relative value for a matrix or matrix.
|
A |
AbstractDoubleMatrixAbs.plus(R rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
void |
AbstractMutableDoubleMatrixRel.set(int row,
int column,
S value)
Set the value for a cell in the matrix.
|
void |
AbstractMutableDoubleMatrixAbs.set(int row,
int column,
S value)
Set the value for a cell in the matrix.
|
void |
AbstractMutableDoubleMatrixAbs.setInUnit(int row,
int column,
double value,
AU valueUnit)
Set the value for a cell in the matrix.
|
void |
AbstractMutableDoubleMatrixRel.setInUnit(int row,
int column,
double value,
U valueUnit)
Set the value for a cell in the matrix.
|
void |
AbstractMutableDoubleMatrixRel.setSI(int row,
int column,
double valueSI)
Set the value for a cell in the matrix.
|
void |
AbstractMutableDoubleMatrixAbs.setSI(int row,
int column,
double valueSI)
Set the value for a cell in the matrix.
|
(package private) static <U extends Unit<U>> |
DoubleMatrix.times(DoubleMatrix.Rel<U> left,
DoubleMatrix.Rel<U> right)
Multiply the content of two matrices with a static method on a cell-by-cell basis; Rel * Rel = Rel.
|
DoubleMatrixData |
DoubleMatrixData.times(DoubleMatrixData right)
Multiply two matrix on a cell-by-cell basis.
|
R |
AbstractDoubleMatrixRel.times(R rel)
Multiply a Relative value with this Relative value for a matrix or matrix.
|
Constructor and Description |
---|
Abs(double[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleMatrix.
|
Abs(double[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable DoubleMatrix.
|
Abs(DoubleScalar.Abs<AU,RU>[][] values,
StorageType storageType)
Construct a new Absolute Mutable DoubleMatrix.
|
Abs(DoubleScalar.Abs<AU,RU>[][] values,
StorageType storageType)
Construct a new Absolute Immutable DoubleMatrix.
|
AbsoluteTemperatureMatrix(AbsoluteTemperature[][] values,
StorageType storageType)
Construct a new Absolute Immutable Double TemperatureMatrix.
|
AbsoluteTemperatureMatrix(double[][] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double TemperatureMatrix.
|
AbstractDoubleMatrixAbs(double[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable DoubleMatrix.
|
AbstractDoubleMatrixAbs(S[][] values,
StorageType storageType)
Construct a new Absolute Immutable DoubleMatrix.
|
AbstractDoubleMatrixRel(double[][] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable DoubleMatrix.
|
AbstractDoubleMatrixRel(S[][] values,
StorageType storageType)
Construct a new Relative Immutable DoubleMatrix.
|
AbstractMutableDoubleMatrixAbs(double[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleMatrix.
|
AbstractMutableDoubleMatrixAbs(S[][] values,
StorageType storageType)
Construct a new Absolute Mutable DoubleMatrix.
|
AbstractMutableDoubleMatrixRel(double[][] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleMatrix.
|
AbstractMutableDoubleMatrixRel(S[][] values,
StorageType storageType)
Construct a new Relative Mutable DoubleMatrix.
|
AccelerationMatrix(Acceleration[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationMatrix.
|
AccelerationMatrix(double[][] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationMatrix.
|
AngleMatrix(Angle[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleMatrix.
|
AngleMatrix(double[][] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleMatrix.
|
AngleSolidMatrix(AngleSolid[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidMatrix.
|
AngleSolidMatrix(double[][] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidMatrix.
|
AreaMatrix(Area[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
AreaMatrix(double[][] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
DensityMatrix(Density[][] values,
StorageType storageType)
Construct a new Relative Immutable Double DensityMatrix.
|
DensityMatrix(double[][] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityMatrix.
|
DimensionlessMatrix(Dimensionless[][] values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessMatrix.
|
DimensionlessMatrix(double[][] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessMatrix.
|
DirectionMatrix(Direction[][] values,
StorageType storageType)
Construct a new Absolute Immutable Double AngleMatrix.
|
DirectionMatrix(double[][] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double AngleMatrix.
|
DoubleMatrixDataDense(double[][] matrixSI)
Create a matrix with dense data.
|
DoubleMatrixDataDense(double[] matrixSI,
int rows,
int cols)
Create a matrix with dense data.
|
DoubleMatrixDataSparse(double[][] dataSI)
Create a vector with sparse data.
|
DoubleMatrixDataSparse(double[] denseSI,
int rows,
int cols)
Create a vector with sparse data from an internal vector with dense data.
|
DurationMatrix(double[][] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DurationMatrix.
|
DurationMatrix(Duration[][] values,
StorageType storageType)
Construct a new Relative Immutable Double DurationMatrix.
|
ElectricalChargeMatrix(double[][] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeMatrix.
|
ElectricalChargeMatrix(ElectricalCharge[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeMatrix.
|
ElectricalCurrentMatrix(double[][] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentMatrix.
|
ElectricalCurrentMatrix(ElectricalCurrent[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentMatrix.
|
ElectricalPotentialMatrix(double[][] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialMatrix.
|
ElectricalPotentialMatrix(ElectricalPotential[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialMatrix.
|
ElectricalResistanceMatrix(double[][] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceMatrix.
|
ElectricalResistanceMatrix(ElectricalResistance[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceMatrix.
|
EnergyMatrix(double[][] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyMatrix.
|
EnergyMatrix(Energy[][] values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyMatrix.
|
FlowMassMatrix(double[][] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassMatrix.
|
FlowMassMatrix(FlowMass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassMatrix.
|
FlowVolumeMatrix(double[][] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeMatrix.
|
FlowVolumeMatrix(FlowVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeMatrix.
|
ForceMatrix(double[][] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceMatrix.
|
ForceMatrix(Force[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ForceMatrix.
|
FrequencyMatrix(double[][] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyMatrix.
|
FrequencyMatrix(Frequency[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyMatrix.
|
LengthMatrix(double[][] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LengthMatrix.
|
LengthMatrix(Length[][] values,
StorageType storageType)
Construct a new Relative Immutable Double LengthMatrix.
|
LinearDensityMatrix(double[][] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityMatrix.
|
LinearDensityMatrix(LinearDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityMatrix.
|
MassMatrix(double[][] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassMatrix.
|
MassMatrix(Mass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MassMatrix.
|
MoneyMatrix(double[][] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyMatrix.
|
MoneyMatrix(Money[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyMatrix.
|
MoneyPerAreaMatrix(double[][] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaMatrix.
|
MoneyPerAreaMatrix(MoneyPerArea[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaMatrix.
|
MoneyPerDurationMatrix(double[][] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationMatrix.
|
MoneyPerDurationMatrix(MoneyPerDuration[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationMatrix.
|
MoneyPerEnergyMatrix(double[][] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyMatrix.
|
MoneyPerEnergyMatrix(MoneyPerEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyMatrix.
|
MoneyPerLengthMatrix(double[][] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthMatrix.
|
MoneyPerLengthMatrix(MoneyPerLength[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthMatrix.
|
MoneyPerMassMatrix(double[][] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassMatrix.
|
MoneyPerMassMatrix(MoneyPerMass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassMatrix.
|
MoneyPerVolumeMatrix(double[][] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeMatrix.
|
MoneyPerVolumeMatrix(MoneyPerVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeMatrix.
|
MutableAbsoluteTemperatureMatrix(AbsoluteTemperature[][] values,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureMatrix.
|
MutableAbsoluteTemperatureMatrix(double[][] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureMatrix.
|
MutableAccelerationMatrix(Acceleration[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationMatrix.
|
MutableAccelerationMatrix(double[][] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationMatrix.
|
MutableAngleMatrix(Angle[][] values,
StorageType storageType)
Construct a new Relative Mutable Double AngleMatrix.
|
MutableAngleMatrix(double[][] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double AngleMatrix.
|
MutableAngleSolidMatrix(AngleSolid[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidMatrix.
|
MutableAngleSolidMatrix(double[][] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidMatrix.
|
MutableAreaMatrix(Area[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
MutableAreaMatrix(double[][] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
MutableDensityMatrix(Density[][] values,
StorageType storageType)
Construct a new Relative Immutable Double DensityMatrix.
|
MutableDensityMatrix(double[][] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityMatrix.
|
MutableDimensionlessMatrix(Dimensionless[][] values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessMatrix.
|
MutableDimensionlessMatrix(double[][] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessMatrix.
|
MutableDirectionMatrix(Direction[][] values,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionMatrix.
|
MutableDirectionMatrix(double[][] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionMatrix.
|
MutableDurationMatrix(double[][] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double DurationMatrix.
|
MutableDurationMatrix(Duration[][] values,
StorageType storageType)
Construct a new Relative Mutable Double DurationMatrix.
|
MutableElectricalChargeMatrix(double[][] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeMatrix.
|
MutableElectricalChargeMatrix(ElectricalCharge[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeMatrix.
|
MutableElectricalCurrentMatrix(double[][] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentMatrix.
|
MutableElectricalCurrentMatrix(ElectricalCurrent[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentMatrix.
|
MutableElectricalPotentialMatrix(double[][] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialMatrix.
|
MutableElectricalPotentialMatrix(ElectricalPotential[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialMatrix.
|
MutableElectricalResistanceMatrix(double[][] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceMatrix.
|
MutableElectricalResistanceMatrix(ElectricalResistance[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceMatrix.
|
MutableEnergyMatrix(double[][] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyMatrix.
|
MutableEnergyMatrix(Energy[][] values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyMatrix.
|
MutableFlowMassMatrix(double[][] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassMatrix.
|
MutableFlowMassMatrix(FlowMass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassMatrix.
|
MutableFlowVolumeMatrix(double[][] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeMatrix.
|
MutableFlowVolumeMatrix(FlowVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeMatrix.
|
MutableForceMatrix(double[][] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceMatrix.
|
MutableForceMatrix(Force[][] values,
StorageType storageType)
Construct a new Relative Immutable Double ForceMatrix.
|
MutableFrequencyMatrix(double[][] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyMatrix.
|
MutableFrequencyMatrix(Frequency[][] values,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyMatrix.
|
MutableLengthMatrix(double[][] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double LengthMatrix.
|
MutableLengthMatrix(Length[][] values,
StorageType storageType)
Construct a new Relative Mutable Double LengthMatrix.
|
MutableLinearDensityMatrix(double[][] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityMatrix.
|
MutableLinearDensityMatrix(LinearDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityMatrix.
|
MutableMassMatrix(double[][] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassMatrix.
|
MutableMassMatrix(Mass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MassMatrix.
|
MutableMoneyMatrix(double[][] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyMatrix.
|
MutableMoneyMatrix(Money[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyMatrix.
|
MutableMoneyPerAreaMatrix(double[][] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaMatrix.
|
MutableMoneyPerAreaMatrix(MoneyPerArea[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaMatrix.
|
MutableMoneyPerDurationMatrix(double[][] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationMatrix.
|
MutableMoneyPerDurationMatrix(MoneyPerDuration[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationMatrix.
|
MutableMoneyPerEnergyMatrix(double[][] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyMatrix.
|
MutableMoneyPerEnergyMatrix(MoneyPerEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyMatrix.
|
MutableMoneyPerLengthMatrix(double[][] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthMatrix.
|
MutableMoneyPerLengthMatrix(MoneyPerLength[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthMatrix.
|
MutableMoneyPerMassMatrix(double[][] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassMatrix.
|
MutableMoneyPerMassMatrix(MoneyPerMass[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassMatrix.
|
MutableMoneyPerVolumeMatrix(double[][] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeMatrix.
|
MutableMoneyPerVolumeMatrix(MoneyPerVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeMatrix.
|
MutablePositionMatrix(double[][] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double PositionMatrix.
|
MutablePositionMatrix(Position[][] values,
StorageType storageType)
Construct a new Absolute Mutable Double PositionMatrix.
|
MutablePowerMatrix(double[][] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerMatrix.
|
MutablePowerMatrix(Power[][] values,
StorageType storageType)
Construct a new Relative Immutable Double PowerMatrix.
|
MutablePressureMatrix(double[][] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureMatrix.
|
MutablePressureMatrix(Pressure[][] values,
StorageType storageType)
Construct a new Relative Immutable Double PressureMatrix.
|
MutableSpeedMatrix(double[][] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedMatrix.
|
MutableSpeedMatrix(Speed[][] values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedMatrix.
|
MutableTemperatureMatrix(double[][] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureMatrix.
|
MutableTemperatureMatrix(Temperature[][] values,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureMatrix.
|
MutableTimeMatrix(double[][] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double TimeMatrix.
|
MutableTimeMatrix(Time[][] values,
StorageType storageType)
Construct a new Absolute Mutable Double TimeMatrix.
|
MutableTorqueMatrix(double[][] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueMatrix.
|
MutableTorqueMatrix(Torque[][] values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueMatrix.
|
MutableVolumeMatrix(double[][] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeMatrix.
|
MutableVolumeMatrix(Volume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeMatrix.
|
PositionMatrix(double[][] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double LengthMatrix.
|
PositionMatrix(Position[][] values,
StorageType storageType)
Construct a new Absolute Immutable Double LengthMatrix.
|
PowerMatrix(double[][] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerMatrix.
|
PowerMatrix(Power[][] values,
StorageType storageType)
Construct a new Relative Immutable Double PowerMatrix.
|
PressureMatrix(double[][] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureMatrix.
|
PressureMatrix(Pressure[][] values,
StorageType storageType)
Construct a new Relative Immutable Double PressureMatrix.
|
Rel(double[][] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleMatrix.
|
Rel(double[][] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable DoubleMatrix.
|
Rel(DoubleScalar.Rel<U>[][] values,
StorageType storageType)
Construct a new Relative Mutable DoubleMatrix.
|
Rel(DoubleScalar.Rel<U>[][] values,
StorageType storageType)
Construct a new Relative Immutable DoubleMatrix.
|
SpeedMatrix(double[][] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedMatrix.
|
SpeedMatrix(Speed[][] values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedMatrix.
|
TemperatureMatrix(double[][] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureMatrix.
|
TemperatureMatrix(Temperature[][] values,
StorageType storageType)
Construct a new Relative Immutable Double TemperatureMatrix.
|
TimeMatrix(double[][] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double DurationMatrix.
|
TimeMatrix(Time[][] values,
StorageType storageType)
Construct a new Absolute Immutable Double DurationMatrix.
|
TorqueMatrix(double[][] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueMatrix.
|
TorqueMatrix(Torque[][] values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueMatrix.
|
VolumeMatrix(double[][] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeMatrix.
|
VolumeMatrix(Volume[][] values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeMatrix.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractDoubleVector.checkIndex(int index)
Check that a provided index is valid.
|
protected void |
AbstractDoubleVector.checkSize(AbstractDoubleVector<U,?> other)
Centralized size equality check.
|
protected void |
AbstractDoubleVector.checkSize(double[] other)
Centralized size equality check.
|
(package private) static <U extends Unit<U>,S extends AbstractDoubleScalarRel<U,S>> |
AbstractDoubleVectorRel.checkUnit(AbstractDoubleScalarRel<U,S>[] dsArray)
Check that a provided array can be used to create some descendant of a DoubleVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractDoubleScalarAbs<AU,S,RU,?>> |
AbstractDoubleVectorAbs.checkUnit(List<S> dsList)
Check that a provided list can be used to create some descendant of a DoubleVector, and return the Unit.
|
(package private) static <U extends Unit<U>,S extends AbstractDoubleScalarRel<U,S>> |
AbstractDoubleVectorRel.checkUnit(List<S> dsList)
Check that a provided list can be used to create some descendant of a DoubleVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractDoubleScalarAbs<AU,S,RU,?>> |
AbstractDoubleVectorAbs.checkUnit(S[] dsArray)
Check that a provided array can be used to create some descendant of a DoubleVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractDoubleScalarAbs<AU,S,RU,?>> |
AbstractDoubleVectorAbs.checkUnit(SortedMap<Integer,S> dsMap)
Check that a provided Map can be used to create some descendant of a DoubleVector.
|
(package private) static <U extends Unit<U>,S extends AbstractDoubleScalarRel<U,S>> |
AbstractDoubleVectorRel.checkUnit(SortedMap<Integer,S> dsMap)
Check that a provided Map can be used to create some descendant of a DoubleVector.
|
void |
DoubleVectorDataSparse.decrementBy(DoubleVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
void |
DoubleVectorDataDense.decrementBy(DoubleVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
abstract void |
DoubleVectorData.decrementBy(DoubleVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleVectorRel.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed vector.
|
MA |
AbstractMutableDoubleVectorAbs.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed vector.
|
DoubleVectorData |
DoubleVectorData.divide(DoubleVectorData right)
Divide two vectors on a cell-by-cell basis.
|
R |
AbstractDoubleVectorRel.divide(R rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
void |
DoubleVectorDataSparse.divideBy(DoubleVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
void |
DoubleVectorDataDense.divideBy(DoubleVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
abstract void |
DoubleVectorData.divideBy(DoubleVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleVectorRel.divideBy(R factors)
Divide the values in the vector by the supplied values and return the changed vector.
|
AbstractDoubleScalar<U,?> |
DoubleVectorInterface.get(int index)
Retrieve a value from the vector.
|
S |
AbstractDoubleVectorRel.get(int index)
Retrieve a value from the vector.
|
S |
AbstractDoubleVectorAbs.get(int index)
Retrieve a value from the vector.
|
double |
DoubleVectorInterface.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
double |
AbstractDoubleVector.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
double |
DoubleVectorInterface.getInUnit(int index,
U targetUnit)
Retrieve the value stored at a specified position converted into a specified unit.
|
double |
AbstractDoubleVector.getInUnit(int index,
U targetUnit)
Retrieve the value stored at a specified position converted into a specified unit.
|
double |
DoubleVectorInterface.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
double |
AbstractDoubleVector.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
void |
DoubleVectorDataSparse.incrementBy(DoubleVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
void |
DoubleVectorDataDense.incrementBy(DoubleVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
abstract void |
DoubleVectorData.incrementBy(DoubleVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleVectorRel.incrementBy(R increment)
Increment the value by the supplied value and return the changed vector.
|
MA |
AbstractMutableDoubleVectorAbs.incrementBy(R increment)
Increment the value by the supplied value and return the changed vector.
|
static DoubleVectorData |
DoubleVectorData.instantiate(double[] values,
Scale scale,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static <U extends Unit<U>,S extends AbstractDoubleVector<U,S>> |
DoubleVectorUtil.instantiate(double[] value,
U unit,
StorageType storageType)
Instantiate the DoubleVector based on its unit.
|
static DoubleVectorData |
DoubleVectorData.instantiate(DoubleScalarInterface[] values,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static DoubleVectorData |
DoubleVectorData.instantiate(List<Double> values,
Scale scale,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static DoubleVectorData |
DoubleVectorData.instantiate(SortedMap<Integer,Double> values,
int length,
Scale scale,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static <S extends AbstractDoubleVector<?,S>> |
DoubleVectorUtil.instantiateAnonymous(double[] value,
Unit<?> unit,
StorageType storageType)
Instantiate the DoubleVector based on its unit.
|
static <S extends AbstractDoubleVector<?,S>> |
DoubleVectorUtil.instantiateAnonymousSI(double[] si,
Unit<?> displayUnit,
StorageType storageType)
Instantiate the DoubleVector based on its unit.
|
static DoubleVectorData |
DoubleVectorData.instantiateLD(List<? extends DoubleScalarInterface> values,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static <S extends DoubleScalarInterface> |
DoubleVectorData.instantiateMD(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Instantiate a DoubleVectorData with the right data type.
|
static <U extends Unit<U>,S extends AbstractDoubleVector<U,S>> |
DoubleVectorUtil.instantiateSI(double[] si,
U displayUnit,
StorageType storageType)
Instantiate the DoubleVector based on its unit.
|
R |
AbstractDoubleVectorAbs.minus(A abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
DoubleVectorData |
DoubleVectorData.minus(DoubleVectorData right)
Subtract two vectors on a cell-by-cell basis.
|
R |
AbstractDoubleVectorRel.minus(R rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
A |
AbstractDoubleVectorAbs.minus(R rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
void |
DoubleVectorDataSparse.multiplyBy(DoubleVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
void |
DoubleVectorDataDense.multiplyBy(DoubleVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
abstract void |
DoubleVectorData.multiplyBy(DoubleVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
MR |
AbstractMutableDoubleVectorRel.multiplyBy(R factors)
Multiply the values in the vector by the supplied values and return the changed vector.
|
MA |
AbstractMutableDoubleVectorAbs.multiplyBy(R factors)
Multiply the values in the vector by the supplied values and return the changed vector.
|
void |
AbstractMutableDoubleVectorRel.normalize()
Normalize the vector, i.e.
|
void |
AbstractMutableDoubleVectorAbs.normalize()
Normalize the vector, i.e.
|
DoubleVectorData |
DoubleVectorData.plus(DoubleVectorData right)
Add two vectors on a cell-by-cell basis.
|
R |
AbstractDoubleVectorRel.plus(R rel)
Add a Relative value to this Relative value for a vector or matrix.
|
A |
AbstractDoubleVectorAbs.plus(R rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
void |
AbstractMutableDoubleVectorRel.set(int index,
S value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
AbstractMutableDoubleVectorAbs.set(int index,
S value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
AbstractMutableDoubleVectorAbs.setInUnit(int index,
double value,
AU valueUnit)
Replace the value at index by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
AbstractMutableDoubleVectorRel.setInUnit(int index,
double value,
U valueUnit)
Replace the value at index by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
AbstractMutableDoubleVectorRel.setSI(int index,
double valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
void |
AbstractMutableDoubleVectorAbs.setSI(int index,
double valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
DoubleVectorData |
DoubleVectorData.times(DoubleVectorData right)
Multiply two vector on a cell-by-cell basis.
|
R |
AbstractDoubleVectorRel.times(R rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
Constructor and Description |
---|
Abs(double[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(double[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(DoubleScalar.Abs<AU,RU>[] values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(DoubleScalar.Abs<AU,RU>[] values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(List<Double> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(List<Double> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(List<DoubleScalar.Abs<AU,RU>> values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(List<DoubleScalar.Abs<AU,RU>> values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(SortedMap<Integer,Double> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(SortedMap<Integer,Double> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(SortedMap<Integer,DoubleScalar.Abs<AU,RU>> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
Abs(SortedMap<Integer,DoubleScalar.Abs<AU,RU>> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbsoluteTemperatureVector(AbsoluteTemperature[] values,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbsoluteTemperatureVector(double[] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbsoluteTemperatureVector(List<AbsoluteTemperature> values,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbsoluteTemperatureVector(List<Double> values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbsoluteTemperatureVector(SortedMap<Integer,AbsoluteTemperature> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbsoluteTemperatureVector(SortedMap<Integer,Double> values,
AbsoluteTemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double AbsoluteTemperatureVector.
|
AbstractDoubleVectorAbs(double[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorAbs(List<Double> values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorAbs(List<S> values,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorAbs(S[] values,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorAbs(SortedMap<Integer,Double> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorAbs(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable DoubleVector.
|
AbstractDoubleVectorRel(double[] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractDoubleVectorRel(List<Double> values,
U unit,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractDoubleVectorRel(List<S> values,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractDoubleVectorRel(S[] values,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractDoubleVectorRel(SortedMap<Integer,Double> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractDoubleVectorRel(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Relative Immutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(double[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(List<Double> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(List<S> values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(S[] values,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(SortedMap<Integer,Double> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorAbs(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(double[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(List<Double> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(List<S> values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(S[] values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(SortedMap<Integer,Double> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AbstractMutableDoubleVectorRel(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
AccelerationVector(Acceleration[] values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AccelerationVector(double[] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AccelerationVector(List<Acceleration> values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AccelerationVector(List<Double> values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AccelerationVector(SortedMap<Integer,Acceleration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AccelerationVector(SortedMap<Integer,Double> values,
AccelerationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
AngleSolidVector(AngleSolid[] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleSolidVector(double[] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleSolidVector(List<AngleSolid> values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleSolidVector(List<Double> values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleSolidVector(SortedMap<Integer,AngleSolid> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleSolidVector(SortedMap<Integer,Double> values,
AngleSolidUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
AngleVector(Angle[] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AngleVector(double[] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AngleVector(List<Angle> values,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AngleVector(List<Double> values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AngleVector(SortedMap<Integer,Angle> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AngleVector(SortedMap<Integer,Double> values,
AngleUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleVector.
|
AreaVector(Area[] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(double[] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(List<Area> values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(List<Double> values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(SortedMap<Integer,Area> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(SortedMap<Integer,Double> values,
AreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
DensityVector(Density[] values,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DensityVector(double[] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DensityVector(List<Density> values,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DensityVector(List<Double> values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DensityVector(SortedMap<Integer,Density> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DensityVector(SortedMap<Integer,Double> values,
DensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
DimensionlessVector(Dimensionless[] values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DimensionlessVector(double[] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DimensionlessVector(List<Dimensionless> values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DimensionlessVector(List<Double> values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DimensionlessVector(SortedMap<Integer,Dimensionless> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DimensionlessVector(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
DirectionVector(Direction[] values,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DirectionVector(double[] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DirectionVector(List<Direction> values,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DirectionVector(List<Double> values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DirectionVector(SortedMap<Integer,Direction> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DirectionVector(SortedMap<Integer,Double> values,
DirectionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double DirectionVector.
|
DurationVector(double[] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(Duration[] values,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(List<Double> values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(List<Duration> values,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(SortedMap<Integer,Double> values,
DurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
DurationVector(SortedMap<Integer,Duration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DurationVector.
|
ElectricalChargeVector(double[] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalChargeVector(ElectricalCharge[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalChargeVector(List<Double> values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalChargeVector(List<ElectricalCharge> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalChargeVector(SortedMap<Integer,Double> values,
ElectricalChargeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalChargeVector(SortedMap<Integer,ElectricalCharge> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
ElectricalCurrentVector(double[] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalCurrentVector(ElectricalCurrent[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalCurrentVector(List<Double> values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalCurrentVector(List<ElectricalCurrent> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalCurrentVector(SortedMap<Integer,Double> values,
ElectricalCurrentUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalCurrentVector(SortedMap<Integer,ElectricalCurrent> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
ElectricalPotentialVector(double[] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalPotentialVector(ElectricalPotential[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalPotentialVector(List<Double> values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalPotentialVector(List<ElectricalPotential> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalPotentialVector(SortedMap<Integer,Double> values,
ElectricalPotentialUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalPotentialVector(SortedMap<Integer,ElectricalPotential> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
ElectricalResistanceVector(double[] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
ElectricalResistanceVector(ElectricalResistance[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
ElectricalResistanceVector(List<Double> values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
ElectricalResistanceVector(List<ElectricalResistance> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
ElectricalResistanceVector(SortedMap<Integer,Double> values,
ElectricalResistanceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
ElectricalResistanceVector(SortedMap<Integer,ElectricalResistance> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
EnergyVector(double[] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
EnergyVector(Energy[] values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
EnergyVector(List<Double> values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
EnergyVector(List<Energy> values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
EnergyVector(SortedMap<Integer,Double> values,
EnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
EnergyVector(SortedMap<Integer,Energy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
FlowMassVector(double[] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowMassVector(FlowMass[] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowMassVector(List<Double> values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowMassVector(List<FlowMass> values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowMassVector(SortedMap<Integer,Double> values,
FlowMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowMassVector(SortedMap<Integer,FlowMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
FlowVolumeVector(double[] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
FlowVolumeVector(FlowVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
FlowVolumeVector(List<Double> values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
FlowVolumeVector(List<FlowVolume> values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
FlowVolumeVector(SortedMap<Integer,Double> values,
FlowVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
FlowVolumeVector(SortedMap<Integer,FlowVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
ForceVector(double[] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
ForceVector(Force[] values,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
ForceVector(List<Double> values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
ForceVector(List<Force> values,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
ForceVector(SortedMap<Integer,Double> values,
ForceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
ForceVector(SortedMap<Integer,Force> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
FrequencyVector(double[] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
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.
|
LengthVector(double[] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LengthVector(Length[] values,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LengthVector(List<Double> values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LengthVector(List<Length> values,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LengthVector(SortedMap<Integer,Double> values,
LengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LengthVector(SortedMap<Integer,Length> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LengthVector.
|
LinearDensityVector(double[] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
LinearDensityVector(LinearDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
LinearDensityVector(List<Double> values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
LinearDensityVector(List<LinearDensity> values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
LinearDensityVector(SortedMap<Integer,Double> values,
LinearDensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
LinearDensityVector(SortedMap<Integer,LinearDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MassVector(double[] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MassVector(List<Double> values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MassVector(List<Mass> values,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MassVector(Mass[] values,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MassVector(SortedMap<Integer,Double> values,
MassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MassVector(SortedMap<Integer,Mass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MoneyPerAreaVector(double[] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerAreaVector(List<Double> values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerAreaVector(List<MoneyPerArea> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerAreaVector(MoneyPerArea[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerAreaVector(SortedMap<Integer,Double> values,
MoneyPerAreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerAreaVector(SortedMap<Integer,MoneyPerArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MoneyPerDurationVector(double[] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerDurationVector(List<Double> values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerDurationVector(List<MoneyPerDuration> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerDurationVector(MoneyPerDuration[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerDurationVector(SortedMap<Integer,Double> values,
MoneyPerDurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerDurationVector(SortedMap<Integer,MoneyPerDuration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MoneyPerEnergyVector(double[] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerEnergyVector(List<Double> values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerEnergyVector(List<MoneyPerEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerEnergyVector(MoneyPerEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerEnergyVector(SortedMap<Integer,Double> values,
MoneyPerEnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerEnergyVector(SortedMap<Integer,MoneyPerEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MoneyPerLengthVector(double[] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerLengthVector(List<Double> values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerLengthVector(List<MoneyPerLength> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerLengthVector(MoneyPerLength[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerLengthVector(SortedMap<Integer,Double> values,
MoneyPerLengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerLengthVector(SortedMap<Integer,MoneyPerLength> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MoneyPerMassVector(double[] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerMassVector(List<Double> values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerMassVector(List<MoneyPerMass> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerMassVector(MoneyPerMass[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerMassVector(SortedMap<Integer,Double> values,
MoneyPerMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerMassVector(SortedMap<Integer,MoneyPerMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MoneyPerVolumeVector(double[] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyPerVolumeVector(List<Double> values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyPerVolumeVector(List<MoneyPerVolume> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyPerVolumeVector(MoneyPerVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyPerVolumeVector(SortedMap<Integer,Double> values,
MoneyPerVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyPerVolumeVector(SortedMap<Integer,MoneyPerVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MoneyVector(double[] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MoneyVector(List<Double> values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MoneyVector(List<Money> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MoneyVector(Money[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MoneyVector(SortedMap<Integer,Double> values,
MoneyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MoneyVector(SortedMap<Integer,Money> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableAbsoluteTemperatureVector(AbsoluteTemperature[] values,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAbsoluteTemperatureVector(double[] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAbsoluteTemperatureVector(List<AbsoluteTemperature> values,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAbsoluteTemperatureVector(List<Double> values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAbsoluteTemperatureVector(SortedMap<Integer,AbsoluteTemperature> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAbsoluteTemperatureVector(SortedMap<Integer,Double> values,
AbsoluteTemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double AbsoluteTemperatureVector.
|
MutableAccelerationVector(Acceleration[] values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAccelerationVector(double[] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAccelerationVector(List<Acceleration> values,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAccelerationVector(List<Double> values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAccelerationVector(SortedMap<Integer,Acceleration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAccelerationVector(SortedMap<Integer,Double> values,
AccelerationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AccelerationVector.
|
MutableAngleSolidVector(AngleSolid[] values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleSolidVector(double[] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleSolidVector(List<AngleSolid> values,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleSolidVector(List<Double> values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleSolidVector(SortedMap<Integer,AngleSolid> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleSolidVector(SortedMap<Integer,Double> values,
AngleSolidUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AngleSolidVector.
|
MutableAngleVector(Angle[] values,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAngleVector(double[] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAngleVector(List<Angle> values,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAngleVector(List<Double> values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAngleVector(SortedMap<Integer,Angle> values,
int length,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAngleVector(SortedMap<Integer,Double> values,
AngleUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable Double AngleVector.
|
MutableAreaVector(Area[] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(double[] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(List<Area> values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(List<Double> values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(SortedMap<Integer,Area> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(SortedMap<Integer,Double> values,
AreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableDensityVector(Density[] values,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDensityVector(double[] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDensityVector(List<Density> values,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDensityVector(List<Double> values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDensityVector(SortedMap<Integer,Density> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDensityVector(SortedMap<Integer,Double> values,
DensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DensityVector.
|
MutableDimensionlessVector(Dimensionless[] values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDimensionlessVector(double[] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDimensionlessVector(List<Dimensionless> values,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDimensionlessVector(List<Double> values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDimensionlessVector(SortedMap<Integer,Dimensionless> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDimensionlessVector(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double DimensionlessVector.
|
MutableDirectionVector(Direction[] values,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDirectionVector(double[] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDirectionVector(List<Direction> values,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDirectionVector(List<Double> values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDirectionVector(SortedMap<Integer,Direction> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDirectionVector(SortedMap<Integer,Double> values,
DirectionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double DirectionVector.
|
MutableDurationVector(double[] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableDurationVector(Duration[] values,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableDurationVector(List<Double> values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableDurationVector(List<Duration> values,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableDurationVector(SortedMap<Integer,Double> values,
DurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableDurationVector(SortedMap<Integer,Duration> values,
int length,
StorageType storageType)
Construct a new Relative Mutable Double DurationVector.
|
MutableElectricalChargeVector(double[] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalChargeVector(ElectricalCharge[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalChargeVector(List<Double> values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalChargeVector(List<ElectricalCharge> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalChargeVector(SortedMap<Integer,Double> values,
ElectricalChargeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalChargeVector(SortedMap<Integer,ElectricalCharge> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalChargeVector.
|
MutableElectricalCurrentVector(double[] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalCurrentVector(ElectricalCurrent[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalCurrentVector(List<Double> values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalCurrentVector(List<ElectricalCurrent> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalCurrentVector(SortedMap<Integer,Double> values,
ElectricalCurrentUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalCurrentVector(SortedMap<Integer,ElectricalCurrent> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalCurrentVector.
|
MutableElectricalPotentialVector(double[] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalPotentialVector(ElectricalPotential[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalPotentialVector(List<Double> values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalPotentialVector(List<ElectricalPotential> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalPotentialVector(SortedMap<Integer,Double> values,
ElectricalPotentialUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalPotentialVector(SortedMap<Integer,ElectricalPotential> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalPotentialVector.
|
MutableElectricalResistanceVector(double[] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableElectricalResistanceVector(ElectricalResistance[] values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableElectricalResistanceVector(List<Double> values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableElectricalResistanceVector(List<ElectricalResistance> values,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableElectricalResistanceVector(SortedMap<Integer,Double> values,
ElectricalResistanceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableElectricalResistanceVector(SortedMap<Integer,ElectricalResistance> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ElectricalResistanceVector.
|
MutableEnergyVector(double[] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableEnergyVector(Energy[] values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableEnergyVector(List<Double> values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableEnergyVector(List<Energy> values,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableEnergyVector(SortedMap<Integer,Double> values,
EnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableEnergyVector(SortedMap<Integer,Energy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double EnergyVector.
|
MutableFlowMassVector(double[] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowMassVector(FlowMass[] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowMassVector(List<Double> values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowMassVector(List<FlowMass> values,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowMassVector(SortedMap<Integer,Double> values,
FlowMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowMassVector(SortedMap<Integer,FlowMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowMassVector.
|
MutableFlowVolumeVector(double[] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableFlowVolumeVector(FlowVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableFlowVolumeVector(List<Double> values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableFlowVolumeVector(List<FlowVolume> values,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableFlowVolumeVector(SortedMap<Integer,Double> values,
FlowVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableFlowVolumeVector(SortedMap<Integer,FlowVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FlowVolumeVector.
|
MutableForceVector(double[] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableForceVector(Force[] values,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableForceVector(List<Double> values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableForceVector(List<Force> values,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableForceVector(SortedMap<Integer,Double> values,
ForceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableForceVector(SortedMap<Integer,Force> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double ForceVector.
|
MutableFrequencyVector(double[] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableFrequencyVector(Frequency[] values,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableFrequencyVector(List<Double> values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableFrequencyVector(List<Frequency> values,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableFrequencyVector(SortedMap<Integer,Double> values,
FrequencyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableFrequencyVector(SortedMap<Integer,Frequency> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double FrequencyVector.
|
MutableLengthVector(double[] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLengthVector(Length[] values,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLengthVector(List<Double> values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLengthVector(List<Length> values,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLengthVector(SortedMap<Integer,Double> values,
LengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLengthVector(SortedMap<Integer,Length> values,
int length,
StorageType storageType)
Construct a new Relative Mutable Double LengthVector.
|
MutableLinearDensityVector(double[] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableLinearDensityVector(LinearDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableLinearDensityVector(List<Double> values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableLinearDensityVector(List<LinearDensity> values,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableLinearDensityVector(SortedMap<Integer,Double> values,
LinearDensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableLinearDensityVector(SortedMap<Integer,LinearDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double LinearDensityVector.
|
MutableMassVector(double[] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMassVector(List<Double> values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMassVector(List<Mass> values,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMassVector(Mass[] values,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMassVector(SortedMap<Integer,Double> values,
MassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMassVector(SortedMap<Integer,Mass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MassVector.
|
MutableMoneyPerAreaVector(double[] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerAreaVector(List<Double> values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerAreaVector(List<MoneyPerArea> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerAreaVector(MoneyPerArea[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerAreaVector(SortedMap<Integer,Double> values,
MoneyPerAreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerAreaVector(SortedMap<Integer,MoneyPerArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerAreaVector.
|
MutableMoneyPerDurationVector(double[] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerDurationVector(List<Double> values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerDurationVector(List<MoneyPerDuration> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerDurationVector(MoneyPerDuration[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerDurationVector(SortedMap<Integer,Double> values,
MoneyPerDurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerDurationVector(SortedMap<Integer,MoneyPerDuration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerDurationVector.
|
MutableMoneyPerEnergyVector(double[] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerEnergyVector(List<Double> values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerEnergyVector(List<MoneyPerEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerEnergyVector(MoneyPerEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerEnergyVector(SortedMap<Integer,Double> values,
MoneyPerEnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerEnergyVector(SortedMap<Integer,MoneyPerEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerEnergyVector.
|
MutableMoneyPerLengthVector(double[] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerLengthVector(List<Double> values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerLengthVector(List<MoneyPerLength> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerLengthVector(MoneyPerLength[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerLengthVector(SortedMap<Integer,Double> values,
MoneyPerLengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerLengthVector(SortedMap<Integer,MoneyPerLength> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerLengthVector.
|
MutableMoneyPerMassVector(double[] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerMassVector(List<Double> values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerMassVector(List<MoneyPerMass> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerMassVector(MoneyPerMass[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerMassVector(SortedMap<Integer,Double> values,
MoneyPerMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerMassVector(SortedMap<Integer,MoneyPerMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerMassVector.
|
MutableMoneyPerVolumeVector(double[] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyPerVolumeVector(List<Double> values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyPerVolumeVector(List<MoneyPerVolume> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyPerVolumeVector(MoneyPerVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyPerVolumeVector(SortedMap<Integer,Double> values,
MoneyPerVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyPerVolumeVector(SortedMap<Integer,MoneyPerVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyPerVolumeVector.
|
MutableMoneyVector(double[] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(List<Double> values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(List<Money> values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(Money[] values,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(SortedMap<Integer,Double> values,
MoneyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutableMoneyVector(SortedMap<Integer,Money> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double MoneyVector.
|
MutablePositionVector(double[] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double PositionVector.
|
MutablePositionVector(List<Double> values,
PositionUnit 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,
PositionUnit 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.
|
MutablePowerVector(double[] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePowerVector(List<Double> values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePowerVector(List<Power> values,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePowerVector(Power[] values,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePowerVector(SortedMap<Integer,Double> values,
PowerUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePowerVector(SortedMap<Integer,Power> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
MutablePressureVector(double[] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutablePressureVector(List<Double> values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutablePressureVector(List<Pressure> values,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutablePressureVector(Pressure[] values,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutablePressureVector(SortedMap<Integer,Double> values,
PressureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutablePressureVector(SortedMap<Integer,Pressure> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
MutableSpeedVector(double[] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableSpeedVector(List<Double> values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableSpeedVector(List<Speed> values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableSpeedVector(SortedMap<Integer,Double> values,
SpeedUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableSpeedVector(SortedMap<Integer,Speed> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableSpeedVector(Speed[] values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
MutableTemperatureVector(double[] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTemperatureVector(List<Double> values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTemperatureVector(List<Temperature> values,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTemperatureVector(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTemperatureVector(SortedMap<Integer,Temperature> values,
int length,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTemperatureVector(Temperature[] values,
StorageType storageType)
Construct a new Relative Mutable Double TemperatureVector.
|
MutableTimeVector(double[] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTimeVector(List<Double> values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTimeVector(List<Time> values,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTimeVector(SortedMap<Integer,Double> values,
TimeUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTimeVector(SortedMap<Integer,Time> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTimeVector(Time[] values,
StorageType storageType)
Construct a new Absolute Mutable Double TimeVector.
|
MutableTorqueVector(double[] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableTorqueVector(List<Double> values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableTorqueVector(List<Torque> values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableTorqueVector(SortedMap<Integer,Double> values,
TorqueUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableTorqueVector(SortedMap<Integer,Torque> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableTorqueVector(Torque[] values,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
MutableVolumeVector(double[] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
MutableVolumeVector(List<Double> values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
MutableVolumeVector(List<Volume> values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
MutableVolumeVector(SortedMap<Integer,Double> values,
VolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
MutableVolumeVector(SortedMap<Integer,Volume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
MutableVolumeVector(Volume[] values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
PositionVector(double[] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PositionVector(List<Double> values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PositionVector(List<Position> values,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PositionVector(Position[] values,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PositionVector(SortedMap<Integer,Double> values,
PositionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PositionVector(SortedMap<Integer,Position> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double PositionVector.
|
PowerVector(double[] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PowerVector(List<Double> values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PowerVector(List<Power> values,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PowerVector(Power[] values,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PowerVector(SortedMap<Integer,Double> values,
PowerUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PowerVector(SortedMap<Integer,Power> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PowerVector.
|
PressureVector(double[] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
PressureVector(List<Double> values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
PressureVector(List<Pressure> values,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
PressureVector(Pressure[] values,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
PressureVector(SortedMap<Integer,Double> values,
PressureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
PressureVector(SortedMap<Integer,Pressure> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double PressureVector.
|
Rel(double[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(double[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(DoubleScalar.Rel<U>[] values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(DoubleScalar.Rel<U>[] values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(List<Double> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(List<Double> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(List<DoubleScalar.Rel<U>> values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(List<DoubleScalar.Rel<U>> values,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(SortedMap<Integer,Double> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(SortedMap<Integer,Double> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(SortedMap<Integer,DoubleScalar.Rel<U>> values,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
Rel(SortedMap<Integer,DoubleScalar.Rel<U>> values,
int length,
StorageType storageType)
Construct a new Relative Mutable DoubleVector.
|
SpeedVector(double[] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
SpeedVector(List<Double> values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
SpeedVector(List<Speed> values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
SpeedVector(SortedMap<Integer,Double> values,
SpeedUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
SpeedVector(SortedMap<Integer,Speed> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
SpeedVector(Speed[] values,
StorageType storageType)
Construct a new Relative Immutable Double SpeedVector.
|
TemperatureVector(double[] values,
TemperatureUnit unit,
StorageType storageType)
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.
|
TimeVector(double[] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TimeVector(List<Double> values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TimeVector(List<Time> values,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TimeVector(SortedMap<Integer,Double> values,
TimeUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TimeVector(SortedMap<Integer,Time> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TimeVector(Time[] values,
StorageType storageType)
Construct a new Absolute Immutable Double TimeVector.
|
TorqueVector(double[] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double TorqueVector.
|
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.
|
VolumeVector(double[] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
VolumeVector(List<Double> values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
VolumeVector(List<Volume> values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
VolumeVector(SortedMap<Integer,Double> values,
VolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
VolumeVector(SortedMap<Integer,Volume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
VolumeVector(Volume[] values,
StorageType storageType)
Construct a new Relative Immutable Double VolumeVector.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractFloatMatrix.checkIndex(int row,
int column)
Check that provided row and column indices are valid.
|
protected void |
AbstractFloatMatrix.checkSize(AbstractFloatMatrixRel<?,?,?,?> other)
Centralized size equality check.
|
protected void |
AbstractFloatMatrix.checkSize(float[][] other)
Centralized size equality check.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractFloatScalarAbs<AU,S,RU,?>> |
AbstractFloatMatrixAbs.checkUnit(S[][] dsArray)
Check that a provided array can be used to create some descendant of a FloatMatrix, and return the Unit.
|
(package private) static <U extends Unit<U>,S extends AbstractFloatScalarRel<U,S>> |
AbstractFloatMatrixRel.checkUnit(S[][] dsArray)
Check that a provided array can be used to create some descendant of a FloatMatrix, and return the Unit.
|
void |
FloatMatrixDataSparse.decrementBy(FloatMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
void |
FloatMatrixDataDense.decrementBy(FloatMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
abstract void |
FloatMatrixData.decrementBy(FloatMatrixData right)
Subtract a matrix from this matrix on a cell-by-cell basis.
|
MR |
AbstractMutableFloatMatrixRel.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed matrix.
|
MA |
AbstractMutableFloatMatrixAbs.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed matrix.
|
float |
FloatMatrixInterface.determinant()
Compute the determinant of the matrix.
|
float |
AbstractFloatMatrix.determinant()
Compute the determinant of the matrix.
|
(package private) static <U extends Unit<U>> |
FloatMatrix.divide(FloatMatrix.Rel<U> left,
FloatMatrix.Rel<U> right)
Divide the content of two matrices with a static method on a cell-by-cell basis; Rel / Rel = Rel.
|
FloatMatrixData |
FloatMatrixData.divide(FloatMatrixData right)
Divide two matrices on a cell-by-cell basis.
|
R |
AbstractFloatMatrixRel.divide(R rel)
Divide this Relative value by a Relative value for a matrix or matrix.
|
void |
FloatMatrixDataSparse.divideBy(FloatMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
void |
FloatMatrixDataDense.divideBy(FloatMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
abstract void |
FloatMatrixData.divideBy(FloatMatrixData right)
Divide the values of a matrix by the values of another matrix on a cell-by-cell basis.
|
MR |
AbstractMutableFloatMatrixRel.divideBy(R factors)
Divide the values in the matrix by the supplied values and return the changed matrix.
|
protected static float[][] |
AbstractFloatMatrix.ensureRectangularAndNonEmpty(float[][] values)
Check that a 2D array of float is not null and rectangular; i.e.
|
protected static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractFloatScalarAbs<AU,S,RU,?>> |
AbstractFloatMatrixAbs.ensureRectangularAndNonEmpty(S[][] values)
Check that a 2D array of FloatScalar<?> is rectangular; i.e.
|
protected static <U extends Unit<U>,S extends AbstractFloatScalarRel<U,S>> |
AbstractFloatMatrixRel.ensureRectangularAndNonEmpty(S[][] values)
Check that a 2D array of FloatScalar<?> is rectangular; i.e.
|
AbstractFloatScalar<U,?> |
FloatMatrixInterface.get(int row,
int column)
Retrieve a value from the matrix.
|
S |
AbstractFloatMatrixRel.get(int row,
int column)
Retrieve a value from the matrix.
|
S |
AbstractFloatMatrixAbs.get(int row,
int column)
Retrieve a value from the matrix.
|
float |
FloatMatrixInterface.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
float |
AbstractFloatMatrix.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
float |
FloatMatrixInterface.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
float |
AbstractFloatMatrix.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
float |
FloatMatrixInterface.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
float |
AbstractFloatMatrix.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
void |
FloatMatrixDataSparse.incrementBy(FloatMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
void |
FloatMatrixDataDense.incrementBy(FloatMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
abstract void |
FloatMatrixData.incrementBy(FloatMatrixData right)
Add a matrix to this matrix on a cell-by-cell basis.
|
MR |
AbstractMutableFloatMatrixRel.incrementBy(R increment)
Increment the value by the supplied value and return the changed matrix.
|
MA |
AbstractMutableFloatMatrixAbs.incrementBy(R increment)
Increment the value by the supplied value and return the changed matrix.
|
static FloatMatrixDataSparse |
FloatMatrixDataSparse.instantiate(float[][] valuesSI)
Instantiate a FloatMatrixDataSparse from an array.
|
static FloatMatrixData |
FloatMatrixData.instantiate(float[][] values,
Scale scale,
StorageType storageType)
Instantiate a FloatMatrixData with the right data type.
|
static <U extends Unit<U>,S extends AbstractFloatMatrix<U,S>> |
FloatMatrixUtil.instantiate(float[][] value,
U unit,
StorageType storageType)
Instantiate the FloatMatrix based on its unit.
|
static FloatMatrixData |
FloatMatrixData.instantiate(FloatScalarInterface[][] values,
StorageType storageType)
Instantiate a FloatMatrixData with the right data type.
|
static <S extends AbstractFloatMatrix<?,S>> |
FloatMatrixUtil.instantiateAnonymous(float[][] value,
Unit<?> unit,
StorageType storageType)
Instantiate the FloatMatrix based on its unit.
|
static <S extends AbstractFloatMatrix<?,S>> |
FloatMatrixUtil.instantiateAnonymousSI(float[][] si,
Unit<?> displayUnit,
StorageType storageType)
Instantiate the FloatMatrix based on its unit.
|
static <U extends Unit<U>,S extends AbstractFloatMatrix<U,S>> |
FloatMatrixUtil.instantiateSI(float[][] si,
U displayUnit,
StorageType storageType)
Instantiate the FloatMatrix based on its unit.
|
R |
AbstractFloatMatrixAbs.minus(A abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
FloatMatrix.minus(FloatMatrix.Abs<AU,RU> left,
FloatMatrix.Abs<AU,RU> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Abs - Abs = Rel.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
FloatMatrix.minus(FloatMatrix.Abs<AU,RU> left,
FloatMatrix.Rel<RU> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Abs - Rel = Abs.
|
(package private) static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Rel<U> left,
FloatMatrix.Rel<U> right)
Subtract the content of two matrices with a static method on a cell-by-cell basis; Rel - Rel = Rel.
|
FloatMatrixData |
FloatMatrixData.minus(FloatMatrixData right)
Subtract two matrices on a cell-by-cell basis.
|
R |
AbstractFloatMatrixRel.minus(R rel)
Subtract a Relative value from this Relative value for a matrix or matrix.
|
A |
AbstractFloatMatrixAbs.minus(R rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
void |
FloatMatrixDataSparse.multiplyBy(FloatMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
void |
FloatMatrixDataDense.multiplyBy(FloatMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
abstract void |
FloatMatrixData.multiplyBy(FloatMatrixData right)
Multiply a matrix with the values of another matrix on a cell-by-cell basis.
|
MR |
AbstractMutableFloatMatrixRel.multiplyBy(R factors)
Multiply the values in the matrix by the supplied values and return the changed matrix.
|
MA |
AbstractMutableFloatMatrixAbs.multiplyBy(R factors)
Multiply the values in the matrix by the supplied values and return the changed matrix.
|
void |
AbstractMutableFloatMatrixRel.normalize()
Normalize the matrix, i.e.
|
void |
AbstractMutableFloatMatrixAbs.normalize()
Normalize the matrix, i.e.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>> |
FloatMatrix.plus(FloatMatrix.Abs<AU,RU> left,
FloatMatrix.Rel<RU> right)
Add the content of two matrices with a static method on a cell-by-cell basis; Abs + Rel = Abs.
|
(package private) static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Rel<U> left,
FloatMatrix.Rel<U> right)
Add the content of two matrices with a static method on a cell-by-cell basis; Rel + Rel = Rel.
|
FloatMatrixData |
FloatMatrixData.plus(FloatMatrixData right)
Add two matrices on a cell-by-cell basis.
|
R |
AbstractFloatMatrixRel.plus(R rel)
Add a Relative value to this Relative value for a matrix or matrix.
|
A |
AbstractFloatMatrixAbs.plus(R rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
void |
AbstractMutableFloatMatrixRel.set(int row,
int column,
S value)
Set the value for a cell in the matrix.
|
void |
AbstractMutableFloatMatrixAbs.set(int row,
int column,
S value)
Set the value for a cell in the matrix.
|
void |
AbstractMutableFloatMatrixAbs.setInUnit(int row,
int column,
float value,
AU valueUnit)
Set the value for a cell in the matrix.
|
void |
AbstractMutableFloatMatrixRel.setInUnit(int row,
int column,
float value,
U valueUnit)
Set the value for a cell in the matrix.
|
void |
AbstractMutableFloatMatrixRel.setSI(int row,
int column,
float valueSI)
Set the value for a cell in the matrix.
|
void |
AbstractMutableFloatMatrixAbs.setSI(int row,
int column,
float valueSI)
Set the value for a cell in the matrix.
|
(package private) static <U extends Unit<U>> |
FloatMatrix.times(FloatMatrix.Rel<U> left,
FloatMatrix.Rel<U> right)
Multiply the content of two matrices with a static method on a cell-by-cell basis; Rel * Rel = Rel.
|
FloatMatrixData |
FloatMatrixData.times(FloatMatrixData right)
Multiply two matrix on a cell-by-cell basis.
|
R |
AbstractFloatMatrixRel.times(R rel)
Multiply a Relative value with this Relative value for a matrix or matrix.
|
Constructor and Description |
---|
Abs(float[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatMatrix.
|
Abs(float[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable FloatMatrix.
|
Abs(FloatScalar.Abs<AU,RU>[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatMatrix.
|
Abs(FloatScalar.Abs<AU,RU>[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatMatrix.
|
AbstractFloatMatrixAbs(float[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable FloatMatrix.
|
AbstractFloatMatrixAbs(S[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatMatrix.
|
AbstractFloatMatrixRel(float[][] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable FloatMatrix.
|
AbstractFloatMatrixRel(S[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMatrix.
|
AbstractMutableFloatMatrixAbs(float[][] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatMatrix.
|
AbstractMutableFloatMatrixAbs(S[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatMatrix.
|
AbstractMutableFloatMatrixRel(float[][] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatMatrix.
|
AbstractMutableFloatMatrixRel(S[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatMatrix.
|
FloatAbsoluteTemperatureMatrix(float[][] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureMatrix.
|
FloatAbsoluteTemperatureMatrix(FloatAbsoluteTemperature[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureMatrix.
|
FloatAccelerationMatrix(float[][] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAccelerationMatrix.
|
FloatAccelerationMatrix(FloatAcceleration[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAccelerationMatrix.
|
FloatAngleMatrix(float[][] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAngleMatrix.
|
FloatAngleMatrix(FloatAngle[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAngleMatrix.
|
FloatAngleSolidMatrix(float[][] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAngleSolidMatrix.
|
FloatAngleSolidMatrix(FloatAngleSolid[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAngleSolidMatrix.
|
FloatAreaMatrix(float[][] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAreaMatrix.
|
FloatAreaMatrix(FloatArea[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAreaMatrix.
|
FloatDensityMatrix(float[][] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDensityMatrix.
|
FloatDensityMatrix(FloatDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatDensityMatrix.
|
FloatDimensionlessMatrix(float[][] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDimensionlessMatrix.
|
FloatDimensionlessMatrix(FloatDimensionless[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatDimensionlessMatrix.
|
FloatDirectionMatrix(float[][] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionMatrix.
|
FloatDirectionMatrix(FloatDirection[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionMatrix.
|
FloatDurationMatrix(float[][] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDurationMatrix.
|
FloatDurationMatrix(FloatDuration[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatDurationMatrix.
|
FloatElectricalChargeMatrix(float[][] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalChargeMatrix.
|
FloatElectricalChargeMatrix(FloatElectricalCharge[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalChargeMatrix.
|
FloatElectricalCurrentMatrix(float[][] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalCurrentMatrix.
|
FloatElectricalCurrentMatrix(FloatElectricalCurrent[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalCurrentMatrix.
|
FloatElectricalPotentialMatrix(float[][] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalPotentialMatrix.
|
FloatElectricalPotentialMatrix(FloatElectricalPotential[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalPotentialMatrix.
|
FloatElectricalResistanceMatrix(float[][] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalResistanceMatrix.
|
FloatElectricalResistanceMatrix(FloatElectricalResistance[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalResistanceMatrix.
|
FloatEnergyMatrix(float[][] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatEnergyMatrix.
|
FloatEnergyMatrix(FloatEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatEnergyMatrix.
|
FloatFlowMassMatrix(float[][] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFlowMassMatrix.
|
FloatFlowMassMatrix(FloatFlowMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFlowMassMatrix.
|
FloatFlowVolumeMatrix(float[][] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFlowVolumeMatrix.
|
FloatFlowVolumeMatrix(FloatFlowVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFlowVolumeMatrix.
|
FloatForceMatrix(float[][] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatForceMatrix.
|
FloatForceMatrix(FloatForce[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatForceMatrix.
|
FloatFrequencyMatrix(float[][] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFrequencyMatrix.
|
FloatFrequencyMatrix(FloatFrequency[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFrequencyMatrix.
|
FloatLengthMatrix(float[][] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatLengthMatrix.
|
FloatLengthMatrix(FloatLength[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatLengthMatrix.
|
FloatLinearDensityMatrix(float[][] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatLinearDensityMatrix.
|
FloatLinearDensityMatrix(FloatLinearDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatLinearDensityMatrix.
|
FloatMassMatrix(float[][] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMassMatrix.
|
FloatMassMatrix(FloatMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMassMatrix.
|
FloatMatrixDataDense(float[][] matrixSI)
Create a matrix with dense data.
|
FloatMatrixDataDense(float[] matrixSI,
int rows,
int cols)
Create a matrix with dense data.
|
FloatMatrixDataSparse(float[][] dataSI)
Create a vector with sparse data.
|
FloatMatrixDataSparse(float[] denseSI,
int rows,
int cols)
Create a vector with sparse data from an internal vector with dense data.
|
FloatMoneyMatrix(float[][] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyMatrix.
|
FloatMoneyMatrix(FloatMoney[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyMatrix.
|
FloatMoneyPerAreaMatrix(float[][] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerAreaMatrix.
|
FloatMoneyPerAreaMatrix(FloatMoneyPerArea[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerAreaMatrix.
|
FloatMoneyPerDurationMatrix(float[][] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerDurationMatrix.
|
FloatMoneyPerDurationMatrix(FloatMoneyPerDuration[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerDurationMatrix.
|
FloatMoneyPerEnergyMatrix(float[][] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerEnergyMatrix.
|
FloatMoneyPerEnergyMatrix(FloatMoneyPerEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerEnergyMatrix.
|
FloatMoneyPerLengthMatrix(float[][] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerLengthMatrix.
|
FloatMoneyPerLengthMatrix(FloatMoneyPerLength[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerLengthMatrix.
|
FloatMoneyPerMassMatrix(float[][] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerMassMatrix.
|
FloatMoneyPerMassMatrix(FloatMoneyPerMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerMassMatrix.
|
FloatMoneyPerVolumeMatrix(float[][] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerVolumeMatrix.
|
FloatMoneyPerVolumeMatrix(FloatMoneyPerVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerVolumeMatrix.
|
FloatPositionMatrix(float[][] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionMatrix.
|
FloatPositionMatrix(FloatPosition[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionMatrix.
|
FloatPowerMatrix(float[][] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatPowerMatrix.
|
FloatPowerMatrix(FloatPower[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatPowerMatrix.
|
FloatPressureMatrix(float[][] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatPressureMatrix.
|
FloatPressureMatrix(FloatPressure[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatPressureMatrix.
|
FloatSpeedMatrix(float[][] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatSpeedMatrix.
|
FloatSpeedMatrix(FloatSpeed[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatSpeedMatrix.
|
FloatTemperatureMatrix(float[][] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureMatrix.
|
FloatTemperatureMatrix(FloatTemperature[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureMatrix.
|
FloatTimeMatrix(float[][] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeMatrix.
|
FloatTimeMatrix(FloatTime[][] values,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeMatrix.
|
FloatTorqueMatrix(float[][] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatTorqueMatrix.
|
FloatTorqueMatrix(FloatTorque[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatTorqueMatrix.
|
FloatVolumeMatrix(float[][] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatVolumeMatrix.
|
FloatVolumeMatrix(FloatVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatVolumeMatrix.
|
MutableFloatAbsoluteTemperatureMatrix(float[][] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureMatrix.
|
MutableFloatAbsoluteTemperatureMatrix(FloatAbsoluteTemperature[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureMatrix.
|
MutableFloatAccelerationMatrix(float[][] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAccelerationMatrix.
|
MutableFloatAccelerationMatrix(FloatAcceleration[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAccelerationMatrix.
|
MutableFloatAngleMatrix(float[][] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatAngleMatrix.
|
MutableFloatAngleMatrix(FloatAngle[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatAngleMatrix.
|
MutableFloatAngleSolidMatrix(float[][] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAngleSolidMatrix.
|
MutableFloatAngleSolidMatrix(FloatAngleSolid[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAngleSolidMatrix.
|
MutableFloatAreaMatrix(float[][] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAreaMatrix.
|
MutableFloatAreaMatrix(FloatArea[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatAreaMatrix.
|
MutableFloatDensityMatrix(float[][] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDensityMatrix.
|
MutableFloatDensityMatrix(FloatDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatDensityMatrix.
|
MutableFloatDimensionlessMatrix(float[][] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDimensionlessMatrix.
|
MutableFloatDimensionlessMatrix(FloatDimensionless[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatDimensionlessMatrix.
|
MutableFloatDirectionMatrix(float[][] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionMatrix.
|
MutableFloatDirectionMatrix(FloatDirection[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionMatrix.
|
MutableFloatDurationMatrix(float[][] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatDurationMatrix.
|
MutableFloatDurationMatrix(FloatDuration[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatDurationMatrix.
|
MutableFloatElectricalChargeMatrix(float[][] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalChargeMatrix.
|
MutableFloatElectricalChargeMatrix(FloatElectricalCharge[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalChargeMatrix.
|
MutableFloatElectricalCurrentMatrix(float[][] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalCurrentMatrix.
|
MutableFloatElectricalCurrentMatrix(FloatElectricalCurrent[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalCurrentMatrix.
|
MutableFloatElectricalPotentialMatrix(float[][] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalPotentialMatrix.
|
MutableFloatElectricalPotentialMatrix(FloatElectricalPotential[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalPotentialMatrix.
|
MutableFloatElectricalResistanceMatrix(float[][] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalResistanceMatrix.
|
MutableFloatElectricalResistanceMatrix(FloatElectricalResistance[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatElectricalResistanceMatrix.
|
MutableFloatEnergyMatrix(float[][] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatEnergyMatrix.
|
MutableFloatEnergyMatrix(FloatEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatEnergyMatrix.
|
MutableFloatFlowMassMatrix(float[][] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFlowMassMatrix.
|
MutableFloatFlowMassMatrix(FloatFlowMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFlowMassMatrix.
|
MutableFloatFlowVolumeMatrix(float[][] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFlowVolumeMatrix.
|
MutableFloatFlowVolumeMatrix(FloatFlowVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFlowVolumeMatrix.
|
MutableFloatForceMatrix(float[][] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatForceMatrix.
|
MutableFloatForceMatrix(FloatForce[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatForceMatrix.
|
MutableFloatFrequencyMatrix(float[][] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatFrequencyMatrix.
|
MutableFloatFrequencyMatrix(FloatFrequency[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatFrequencyMatrix.
|
MutableFloatLengthMatrix(float[][] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatLengthMatrix.
|
MutableFloatLengthMatrix(FloatLength[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatLengthMatrix.
|
MutableFloatLinearDensityMatrix(float[][] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatLinearDensityMatrix.
|
MutableFloatLinearDensityMatrix(FloatLinearDensity[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatLinearDensityMatrix.
|
MutableFloatMassMatrix(float[][] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMassMatrix.
|
MutableFloatMassMatrix(FloatMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMassMatrix.
|
MutableFloatMoneyMatrix(float[][] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyMatrix.
|
MutableFloatMoneyMatrix(FloatMoney[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyMatrix.
|
MutableFloatMoneyPerAreaMatrix(float[][] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerAreaMatrix.
|
MutableFloatMoneyPerAreaMatrix(FloatMoneyPerArea[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerAreaMatrix.
|
MutableFloatMoneyPerDurationMatrix(float[][] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerDurationMatrix.
|
MutableFloatMoneyPerDurationMatrix(FloatMoneyPerDuration[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerDurationMatrix.
|
MutableFloatMoneyPerEnergyMatrix(float[][] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerEnergyMatrix.
|
MutableFloatMoneyPerEnergyMatrix(FloatMoneyPerEnergy[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerEnergyMatrix.
|
MutableFloatMoneyPerLengthMatrix(float[][] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerLengthMatrix.
|
MutableFloatMoneyPerLengthMatrix(FloatMoneyPerLength[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerLengthMatrix.
|
MutableFloatMoneyPerMassMatrix(float[][] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerMassMatrix.
|
MutableFloatMoneyPerMassMatrix(FloatMoneyPerMass[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerMassMatrix.
|
MutableFloatMoneyPerVolumeMatrix(float[][] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerVolumeMatrix.
|
MutableFloatMoneyPerVolumeMatrix(FloatMoneyPerVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMoneyPerVolumeMatrix.
|
MutableFloatPositionMatrix(float[][] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionMatrix.
|
MutableFloatPositionMatrix(FloatPosition[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionMatrix.
|
MutableFloatPowerMatrix(float[][] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatPowerMatrix.
|
MutableFloatPowerMatrix(FloatPower[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatPowerMatrix.
|
MutableFloatPressureMatrix(float[][] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatPressureMatrix.
|
MutableFloatPressureMatrix(FloatPressure[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatPressureMatrix.
|
MutableFloatSpeedMatrix(float[][] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatSpeedMatrix.
|
MutableFloatSpeedMatrix(FloatSpeed[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatSpeedMatrix.
|
MutableFloatTemperatureMatrix(float[][] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureMatrix.
|
MutableFloatTemperatureMatrix(FloatTemperature[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureMatrix.
|
MutableFloatTimeMatrix(float[][] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeMatrix.
|
MutableFloatTimeMatrix(FloatTime[][] values,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeMatrix.
|
MutableFloatTorqueMatrix(float[][] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatTorqueMatrix.
|
MutableFloatTorqueMatrix(FloatTorque[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatTorqueMatrix.
|
MutableFloatVolumeMatrix(float[][] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatVolumeMatrix.
|
MutableFloatVolumeMatrix(FloatVolume[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatVolumeMatrix.
|
Rel(float[][] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatMatrix.
|
Rel(float[][] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable FloatMatrix.
|
Rel(FloatScalar.Rel<U>[][] values,
StorageType storageType)
Construct a new Relative Mutable FloatMatrix.
|
Rel(FloatScalar.Rel<U>[][] values,
StorageType storageType)
Construct a new Relative Immutable FloatMatrix.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractFloatVector.checkIndex(int index)
Check that a provided index is valid.
|
protected void |
AbstractFloatVector.checkSize(AbstractFloatVector<U,?> other)
Centralized size equality check.
|
protected void |
AbstractFloatVector.checkSize(float[] other)
Centralized size equality check.
|
(package private) static <U extends Unit<U>,S extends AbstractFloatScalarRel<U,S>> |
AbstractFloatVectorRel.checkUnit(AbstractFloatScalarRel<U,S>[] dsArray)
Check that a provided array can be used to create some descendant of a FloatVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractFloatScalarAbs<AU,S,RU,?>> |
AbstractFloatVectorAbs.checkUnit(List<S> dsList)
Check that a provided list can be used to create some descendant of a FloatVector, and return the Unit.
|
(package private) static <U extends Unit<U>,S extends AbstractFloatScalarRel<U,S>> |
AbstractFloatVectorRel.checkUnit(List<S> dsList)
Check that a provided list can be used to create some descendant of a FloatVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractFloatScalarAbs<AU,S,RU,?>> |
AbstractFloatVectorAbs.checkUnit(S[] dsArray)
Check that a provided array can be used to create some descendant of a FloatVector, and return the Unit.
|
(package private) static <AU extends AbsoluteLinearUnit<AU,RU>,RU extends Unit<RU>,S extends AbstractFloatScalarAbs<AU,S,RU,?>> |
AbstractFloatVectorAbs.checkUnit(SortedMap<Integer,S> dsMap)
Check that a provided Map can be used to create some descendant of a FloatVector.
|
(package private) static <U extends Unit<U>,S extends AbstractFloatScalarRel<U,S>> |
AbstractFloatVectorRel.checkUnit(SortedMap<Integer,S> dsMap)
Check that a provided Map can be used to create some descendant of a FloatVector.
|
void |
FloatVectorDataSparse.decrementBy(FloatVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
void |
FloatVectorDataDense.decrementBy(FloatVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
abstract void |
FloatVectorData.decrementBy(FloatVectorData right)
Subtract a vector from this vector on a cell-by-cell basis.
|
MR |
AbstractMutableFloatVectorRel.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed vector.
|
MA |
AbstractMutableFloatVectorAbs.decrementBy(R decrement)
Decrement the value by the supplied value and return the changed vector.
|
FloatVectorData |
FloatVectorData.divide(FloatVectorData right)
Divide two vectors on a cell-by-cell basis.
|
R |
AbstractFloatVectorRel.divide(R rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
void |
FloatVectorDataSparse.divideBy(FloatVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
void |
FloatVectorDataDense.divideBy(FloatVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
abstract void |
FloatVectorData.divideBy(FloatVectorData right)
Divide the values of a vector by the values of another vector on a cell-by-cell basis.
|
MR |
AbstractMutableFloatVectorRel.divideBy(R factors)
Divide the values in the vector by the supplied values and return the changed vector.
|
S |
AbstractFloatVectorRel.get(int index)
Retrieve a value from the vector.
|
S |
AbstractFloatVectorAbs.get(int index)
Retrieve a value from the vector.
|
abstract AbstractFloatScalar<U,?> |
AbstractFloatVector.get(int index)
Retrieve a value from the vector.
|
float |
FloatVectorInterface.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
float |
AbstractFloatVector.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
float |
FloatVectorInterface.getInUnit(int index,
U targetUnit)
Retrieve the value stored at a specified position converted into a specified unit.
|
float |
AbstractFloatVector.getInUnit(int index,
U targetUnit)
Retrieve the value stored at a specified position converted into a specified unit.
|
float |
FloatVectorInterface.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
float |
AbstractFloatVector.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
void |
FloatVectorDataSparse.incrementBy(FloatVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
void |
FloatVectorDataDense.incrementBy(FloatVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
abstract void |
FloatVectorData.incrementBy(FloatVectorData right)
Add a vector to this vector on a cell-by-cell basis.
|
MR |
AbstractMutableFloatVectorRel.incrementBy(R increment)
Increment the value by the supplied value and return the changed vector.
|
MA |
AbstractMutableFloatVectorAbs.incrementBy(R increment)
Increment the value by the supplied value and return the changed vector.
|
static FloatVectorData |
FloatVectorData.instantiate(float[] values,
Scale scale,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static <U extends Unit<U>,S extends AbstractFloatVector<U,S>> |
FloatVectorUtil.instantiate(float[] value,
U unit,
StorageType storageType)
Instantiate the FloatVector based on its unit.
|
static FloatVectorData |
FloatVectorData.instantiate(FloatScalarInterface[] values,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static FloatVectorData |
FloatVectorData.instantiate(List<Float> values,
Scale scale,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static FloatVectorData |
FloatVectorData.instantiate(SortedMap<Integer,Float> values,
int length,
Scale scale,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static <S extends AbstractFloatVector<?,S>> |
FloatVectorUtil.instantiateAnonymous(float[] value,
Unit<?> unit,
StorageType storageType)
Instantiate the FloatVector based on its unit.
|
static <S extends AbstractFloatVector<?,S>> |
FloatVectorUtil.instantiateAnonymousSI(float[] si,
Unit<?> displayUnit,
StorageType storageType)
Instantiate the FloatVector based on its unit.
|
static FloatVectorData |
FloatVectorData.instantiateLD(List<? extends FloatScalarInterface> values,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static <S extends FloatScalarInterface> |
FloatVectorData.instantiateMD(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Instantiate a FloatVectorData with the right data type.
|
static <U extends Unit<U>,S extends AbstractFloatVector<U,S>> |
FloatVectorUtil.instantiateSI(float[] si,
U displayUnit,
StorageType storageType)
Instantiate the FloatVector based on its unit.
|
R |
AbstractFloatVectorAbs.minus(A abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
FloatVectorData |
FloatVectorData.minus(FloatVectorData right)
Subtract two vectors on a cell-by-cell basis.
|
R |
AbstractFloatVectorRel.minus(R rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
A |
AbstractFloatVectorAbs.minus(R rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
void |
FloatVectorDataSparse.multiplyBy(FloatVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
void |
FloatVectorDataDense.multiplyBy(FloatVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
abstract void |
FloatVectorData.multiplyBy(FloatVectorData right)
Multiply a vector with the values of another vector on a cell-by-cell basis.
|
MR |
AbstractMutableFloatVectorRel.multiplyBy(R factors)
Multiply the values in the vector by the supplied values and return the changed vector.
|
MA |
AbstractMutableFloatVectorAbs.multiplyBy(R factors)
Multiply the values in the vector by the supplied values and return the changed vector.
|
void |
AbstractMutableFloatVectorRel.normalize()
Normalize the vector, i.e.
|
void |
AbstractMutableFloatVectorAbs.normalize()
Normalize the vector, i.e.
|
FloatVectorData |
FloatVectorData.plus(FloatVectorData right)
Add two vectors on a cell-by-cell basis.
|
R |
AbstractFloatVectorRel.plus(R rel)
Add a Relative value to this Relative value for a vector or matrix.
|
A |
AbstractFloatVectorAbs.plus(R rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
void |
AbstractMutableFloatVectorRel.set(int index,
S value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
AbstractMutableFloatVectorAbs.set(int index,
S value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
AbstractMutableFloatVectorAbs.setInUnit(int index,
float value,
AU valueUnit)
Replace the value at index by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
AbstractMutableFloatVectorRel.setInUnit(int index,
float value,
U valueUnit)
Replace the value at index by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
AbstractMutableFloatVectorRel.setSI(int index,
float valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
void |
AbstractMutableFloatVectorAbs.setSI(int index,
float valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
FloatVectorData |
FloatVectorData.times(FloatVectorData right)
Multiply two vector on a cell-by-cell basis.
|
R |
AbstractFloatVectorRel.times(R rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
Constructor and Description |
---|
Abs(float[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(float[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(FloatScalar.Abs<AU,RU>[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(FloatScalar.Abs<AU,RU>[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(List<Float> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(List<Float> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(List<FloatScalar.Abs<AU,RU>> values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(List<FloatScalar.Abs<AU,RU>> values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(SortedMap<Integer,Float> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(SortedMap<Integer,Float> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(SortedMap<Integer,FloatScalar.Abs<AU,RU>> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
Abs(SortedMap<Integer,FloatScalar.Abs<AU,RU>> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractFloatVectorAbs(float[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorAbs(List<Float> values,
AU unit,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorAbs(List<S> values,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorAbs(S[] values,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorAbs(SortedMap<Integer,Float> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorAbs(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatVector.
|
AbstractFloatVectorRel(float[] values,
U unit,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractFloatVectorRel(List<Float> values,
U unit,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractFloatVectorRel(List<S> values,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractFloatVectorRel(S[] values,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractFloatVectorRel(SortedMap<Integer,Float> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractFloatVectorRel(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatVector.
|
AbstractMutableFloatVectorAbs(float[] values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorAbs(List<Float> values,
AU unit,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorAbs(List<S> values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorAbs(S[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorAbs(SortedMap<Integer,Float> values,
AU unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorAbs(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatVector.
|
AbstractMutableFloatVectorRel(float[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
AbstractMutableFloatVectorRel(List<Float> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
AbstractMutableFloatVectorRel(List<S> values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
AbstractMutableFloatVectorRel(S[] values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
AbstractMutableFloatVectorRel(SortedMap<Integer,Float> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
AbstractMutableFloatVectorRel(SortedMap<Integer,S> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
FloatAbsoluteTemperatureVector(float[] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAbsoluteTemperatureVector(FloatAbsoluteTemperature[] values,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAbsoluteTemperatureVector(List<Float> values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAbsoluteTemperatureVector(List<FloatAbsoluteTemperature> values,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAbsoluteTemperatureVector(SortedMap<Integer,Float> values,
AbsoluteTemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAbsoluteTemperatureVector(SortedMap<Integer,FloatAbsoluteTemperature> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatAbsoluteTemperatureVector.
|
FloatAccelerationVector(float[] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAccelerationVector(FloatAcceleration[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAccelerationVector(List<Float> values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAccelerationVector(List<FloatAcceleration> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAccelerationVector(SortedMap<Integer,Float> values,
AccelerationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAccelerationVector(SortedMap<Integer,FloatAcceleration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAccelerationVector.
|
FloatAngleSolidVector(float[] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleSolidVector(FloatAngleSolid[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleSolidVector(List<Float> values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleSolidVector(List<FloatAngleSolid> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleSolidVector(SortedMap<Integer,Float> values,
AngleSolidUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleSolidVector(SortedMap<Integer,FloatAngleSolid> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAngleSolidVector.
|
FloatAngleVector(float[] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAngleVector(FloatAngle[] values,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAngleVector(List<Float> values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAngleVector(List<FloatAngle> values,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAngleVector(SortedMap<Integer,Float> values,
AngleUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAngleVector(SortedMap<Integer,FloatAngle> values,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatAngleVector.
|
FloatAreaVector(float[] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatAreaVector(FloatArea[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatAreaVector(List<Float> values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatAreaVector(List<FloatArea> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatAreaVector(SortedMap<Integer,Float> values,
AreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatAreaVector(SortedMap<Integer,FloatArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatAreaVector.
|
FloatDensityVector(float[] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDensityVector(FloatDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDensityVector(List<Float> values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDensityVector(List<FloatDensity> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDensityVector(SortedMap<Integer,Float> values,
DensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDensityVector(SortedMap<Integer,FloatDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatDensityVector.
|
FloatDimensionlessVector(float[] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDimensionlessVector(FloatDimensionless[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDimensionlessVector(List<Float> values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDimensionlessVector(List<FloatDimensionless> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDimensionlessVector(SortedMap<Integer,Float> values,
DimensionlessUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDimensionlessVector(SortedMap<Integer,FloatDimensionless> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatDimensionlessVector.
|
FloatDirectionVector(float[] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDirectionVector(FloatDirection[] values,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDirectionVector(List<Float> values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDirectionVector(List<FloatDirection> values,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDirectionVector(SortedMap<Integer,Float> values,
DirectionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDirectionVector(SortedMap<Integer,FloatDirection> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatDirectionVector.
|
FloatDurationVector(float[] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatDurationVector(FloatDuration[] values,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatDurationVector(List<Float> values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatDurationVector(List<FloatDuration> values,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatDurationVector(SortedMap<Integer,Float> values,
DurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatDurationVector(SortedMap<Integer,FloatDuration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatDurationVector.
|
FloatElectricalChargeVector(float[] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalChargeVector(FloatElectricalCharge[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalChargeVector(List<Float> values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalChargeVector(List<FloatElectricalCharge> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalChargeVector(SortedMap<Integer,Float> values,
ElectricalChargeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalChargeVector(SortedMap<Integer,FloatElectricalCharge> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalChargeVector.
|
FloatElectricalCurrentVector(float[] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalCurrentVector(FloatElectricalCurrent[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalCurrentVector(List<Float> values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalCurrentVector(List<FloatElectricalCurrent> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalCurrentVector(SortedMap<Integer,Float> values,
ElectricalCurrentUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalCurrentVector(SortedMap<Integer,FloatElectricalCurrent> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalCurrentVector.
|
FloatElectricalPotentialVector(float[] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalPotentialVector(FloatElectricalPotential[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalPotentialVector(List<Float> values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalPotentialVector(List<FloatElectricalPotential> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalPotentialVector(SortedMap<Integer,Float> values,
ElectricalPotentialUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalPotentialVector(SortedMap<Integer,FloatElectricalPotential> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalPotentialVector.
|
FloatElectricalResistanceVector(float[] values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatElectricalResistanceVector(FloatElectricalResistance[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatElectricalResistanceVector(List<Float> values,
ElectricalResistanceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatElectricalResistanceVector(List<FloatElectricalResistance> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatElectricalResistanceVector(SortedMap<Integer,Float> values,
ElectricalResistanceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatElectricalResistanceVector(SortedMap<Integer,FloatElectricalResistance> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatElectricalResistanceVector.
|
FloatEnergyVector(float[] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatEnergyVector(FloatEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatEnergyVector(List<Float> values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatEnergyVector(List<FloatEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatEnergyVector(SortedMap<Integer,Float> values,
EnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatEnergyVector(SortedMap<Integer,FloatEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatEnergyVector.
|
FloatFlowMassVector(float[] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowMassVector(FloatFlowMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowMassVector(List<Float> values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowMassVector(List<FloatFlowMass> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowMassVector(SortedMap<Integer,Float> values,
FlowMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowMassVector(SortedMap<Integer,FloatFlowMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowMassVector.
|
FloatFlowVolumeVector(float[] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatFlowVolumeVector(FloatFlowVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatFlowVolumeVector(List<Float> values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatFlowVolumeVector(List<FloatFlowVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatFlowVolumeVector(SortedMap<Integer,Float> values,
FlowVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatFlowVolumeVector(SortedMap<Integer,FloatFlowVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFlowVolumeVector.
|
FloatForceVector(float[] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(FloatForce[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(List<Float> values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(List<FloatForce> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(SortedMap<Integer,Float> values,
ForceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatForceVector(SortedMap<Integer,FloatForce> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatForceVector.
|
FloatFrequencyVector(float[] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatFrequencyVector(FloatFrequency[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatFrequencyVector(List<Float> values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatFrequencyVector(List<FloatFrequency> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatFrequencyVector(SortedMap<Integer,Float> values,
FrequencyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatFrequencyVector(SortedMap<Integer,FloatFrequency> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatFrequencyVector.
|
FloatLengthVector(float[] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLengthVector(FloatLength[] values,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLengthVector(List<Float> values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLengthVector(List<FloatLength> values,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLengthVector(SortedMap<Integer,Float> values,
LengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLengthVector(SortedMap<Integer,FloatLength> values,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatLengthVector.
|
FloatLinearDensityVector(float[] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatLinearDensityVector(FloatLinearDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatLinearDensityVector(List<Float> values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatLinearDensityVector(List<FloatLinearDensity> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatLinearDensityVector(SortedMap<Integer,Float> values,
LinearDensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatLinearDensityVector(SortedMap<Integer,FloatLinearDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatLinearDensityVector.
|
FloatMassVector(float[] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMassVector(FloatMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMassVector(List<Float> values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMassVector(List<FloatMass> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMassVector(SortedMap<Integer,Float> values,
MassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMassVector(SortedMap<Integer,FloatMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMassVector.
|
FloatMoneyPerAreaVector(float[] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerAreaVector(FloatMoneyPerArea[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerAreaVector(List<Float> values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerAreaVector(List<FloatMoneyPerArea> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerAreaVector(SortedMap<Integer,Float> values,
MoneyPerAreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerAreaVector(SortedMap<Integer,FloatMoneyPerArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerAreaVector.
|
FloatMoneyPerDurationVector(float[] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerDurationVector(FloatMoneyPerDuration[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerDurationVector(List<Float> values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerDurationVector(List<FloatMoneyPerDuration> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerDurationVector(SortedMap<Integer,Float> values,
MoneyPerDurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerDurationVector(SortedMap<Integer,FloatMoneyPerDuration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerDurationVector.
|
FloatMoneyPerEnergyVector(float[] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerEnergyVector(FloatMoneyPerEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerEnergyVector(List<Float> values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerEnergyVector(List<FloatMoneyPerEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerEnergyVector(SortedMap<Integer,Float> values,
MoneyPerEnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerEnergyVector(SortedMap<Integer,FloatMoneyPerEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerEnergyVector.
|
FloatMoneyPerLengthVector(float[] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerLengthVector(FloatMoneyPerLength[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerLengthVector(List<Float> values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerLengthVector(List<FloatMoneyPerLength> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerLengthVector(SortedMap<Integer,Float> values,
MoneyPerLengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerLengthVector(SortedMap<Integer,FloatMoneyPerLength> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerLengthVector.
|
FloatMoneyPerMassVector(float[] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerMassVector(FloatMoneyPerMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerMassVector(List<Float> values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerMassVector(List<FloatMoneyPerMass> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerMassVector(SortedMap<Integer,Float> values,
MoneyPerMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerMassVector(SortedMap<Integer,FloatMoneyPerMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerMassVector.
|
FloatMoneyPerVolumeVector(float[] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyPerVolumeVector(FloatMoneyPerVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyPerVolumeVector(List<Float> values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyPerVolumeVector(List<FloatMoneyPerVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyPerVolumeVector(SortedMap<Integer,Float> values,
MoneyPerVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyPerVolumeVector(SortedMap<Integer,FloatMoneyPerVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyPerVolumeVector.
|
FloatMoneyVector(float[] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatMoneyVector(FloatMoney[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatMoneyVector(List<Float> values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatMoneyVector(List<FloatMoney> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatMoneyVector(SortedMap<Integer,Float> values,
MoneyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatMoneyVector(SortedMap<Integer,FloatMoney> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatMoneyVector.
|
FloatPositionVector(float[] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPositionVector(FloatPosition[] values,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPositionVector(List<Float> values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPositionVector(List<FloatPosition> values,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPositionVector(SortedMap<Integer,Float> values,
PositionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPositionVector(SortedMap<Integer,FloatPosition> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatPositionVector.
|
FloatPowerVector(float[] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPowerVector(FloatPower[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPowerVector(List<Float> values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPowerVector(List<FloatPower> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPowerVector(SortedMap<Integer,Float> values,
PowerUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPowerVector(SortedMap<Integer,FloatPower> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatPowerVector.
|
FloatPressureVector(float[] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatPressureVector(FloatPressure[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatPressureVector(List<Float> values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatPressureVector(List<FloatPressure> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatPressureVector(SortedMap<Integer,Float> values,
PressureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatPressureVector(SortedMap<Integer,FloatPressure> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatPressureVector.
|
FloatSpeedVector(float[] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatSpeedVector(FloatSpeed[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatSpeedVector(List<Float> values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatSpeedVector(List<FloatSpeed> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatSpeedVector(SortedMap<Integer,Float> values,
SpeedUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatSpeedVector(SortedMap<Integer,FloatSpeed> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatSpeedVector.
|
FloatTemperatureVector(float[] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTemperatureVector(FloatTemperature[] values,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTemperatureVector(List<Float> values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTemperatureVector(List<FloatTemperature> values,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTemperatureVector(SortedMap<Integer,Float> values,
TemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTemperatureVector(SortedMap<Integer,FloatTemperature> values,
int length,
StorageType storageType)
Construct a new Relative Immutable FloatTemperatureVector.
|
FloatTimeVector(float[] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTimeVector(FloatTime[] values,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTimeVector(List<Float> values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTimeVector(List<FloatTime> values,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTimeVector(SortedMap<Integer,Float> values,
TimeUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTimeVector(SortedMap<Integer,FloatTime> values,
int length,
StorageType storageType)
Construct a new Absolute Immutable FloatTimeVector.
|
FloatTorqueVector(float[] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatTorqueVector(FloatTorque[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatTorqueVector(List<Float> values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatTorqueVector(List<FloatTorque> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatTorqueVector(SortedMap<Integer,Float> values,
TorqueUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatTorqueVector(SortedMap<Integer,FloatTorque> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatTorqueVector.
|
FloatVolumeVector(float[] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
FloatVolumeVector(FloatVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
FloatVolumeVector(List<Float> values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
FloatVolumeVector(List<FloatVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
FloatVolumeVector(SortedMap<Integer,Float> values,
VolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
FloatVolumeVector(SortedMap<Integer,FloatVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FloatVolumeVector.
|
MutableFloatAbsoluteTemperatureVector(float[] values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAbsoluteTemperatureVector(FloatAbsoluteTemperature[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAbsoluteTemperatureVector(List<Float> values,
AbsoluteTemperatureUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAbsoluteTemperatureVector(List<FloatAbsoluteTemperature> values,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAbsoluteTemperatureVector(SortedMap<Integer,Float> values,
AbsoluteTemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAbsoluteTemperatureVector(SortedMap<Integer,FloatAbsoluteTemperature> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatAbsoluteTemperatureVector.
|
MutableFloatAccelerationVector(float[] values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAccelerationVector(FloatAcceleration[] values,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAccelerationVector(List<Float> values,
AccelerationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAccelerationVector(List<FloatAcceleration> values,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAccelerationVector(SortedMap<Integer,Float> values,
AccelerationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAccelerationVector(SortedMap<Integer,FloatAcceleration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AccelerationVector.
|
MutableFloatAngleSolidVector(float[] values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleSolidVector(FloatAngleSolid[] values,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleSolidVector(List<Float> values,
AngleSolidUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleSolidVector(List<FloatAngleSolid> values,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleSolidVector(SortedMap<Integer,Float> values,
AngleSolidUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleSolidVector(SortedMap<Integer,FloatAngleSolid> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AngleSolidVector.
|
MutableFloatAngleVector(float[] values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAngleVector(FloatAngle[] values,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAngleVector(List<Float> values,
AngleUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAngleVector(List<FloatAngle> values,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAngleVector(SortedMap<Integer,Float> values,
AngleUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAngleVector(SortedMap<Integer,FloatAngle> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatAngleVector.
|
MutableFloatAreaVector(float[] values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatAreaVector(FloatArea[] values,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatAreaVector(List<Float> values,
AreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatAreaVector(List<FloatArea> values,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatAreaVector(SortedMap<Integer,Float> values,
AreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatAreaVector(SortedMap<Integer,FloatArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float AreaVector.
|
MutableFloatDensityVector(float[] values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDensityVector(FloatDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDensityVector(List<Float> values,
DensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDensityVector(List<FloatDensity> values,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDensityVector(SortedMap<Integer,Float> values,
DensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDensityVector(SortedMap<Integer,FloatDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float DensityVector.
|
MutableFloatDimensionlessVector(float[] values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDimensionlessVector(FloatDimensionless[] values,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDimensionlessVector(List<Float> values,
DimensionlessUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDimensionlessVector(List<FloatDimensionless> values,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDimensionlessVector(SortedMap<Integer,Float> values,
DimensionlessUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDimensionlessVector(SortedMap<Integer,FloatDimensionless> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float DimensionlessVector.
|
MutableFloatDirectionVector(float[] values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDirectionVector(FloatDirection[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDirectionVector(List<Float> values,
DirectionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDirectionVector(List<FloatDirection> values,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDirectionVector(SortedMap<Integer,Float> values,
DirectionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDirectionVector(SortedMap<Integer,FloatDirection> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatDirectionVector.
|
MutableFloatDurationVector(float[] values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatDurationVector(FloatDuration[] values,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatDurationVector(List<Float> values,
DurationUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatDurationVector(List<FloatDuration> values,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatDurationVector(SortedMap<Integer,Float> values,
DurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatDurationVector(SortedMap<Integer,FloatDuration> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatDurationVector.
|
MutableFloatElectricalChargeVector(float[] values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalChargeVector(FloatElectricalCharge[] values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalChargeVector(List<Float> values,
ElectricalChargeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalChargeVector(List<FloatElectricalCharge> values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalChargeVector(SortedMap<Integer,Float> values,
ElectricalChargeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalChargeVector(SortedMap<Integer,FloatElectricalCharge> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalChargeVector.
|
MutableFloatElectricalCurrentVector(float[] values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalCurrentVector(FloatElectricalCurrent[] values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalCurrentVector(List<Float> values,
ElectricalCurrentUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalCurrentVector(List<FloatElectricalCurrent> values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalCurrentVector(SortedMap<Integer,Float> values,
ElectricalCurrentUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalCurrentVector(SortedMap<Integer,FloatElectricalCurrent> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalCurrentVector.
|
MutableFloatElectricalPotentialVector(float[] values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
MutableFloatElectricalPotentialVector(FloatElectricalPotential[] values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
MutableFloatElectricalPotentialVector(List<Float> values,
ElectricalPotentialUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
MutableFloatElectricalPotentialVector(List<FloatElectricalPotential> values,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
MutableFloatElectricalPotentialVector(SortedMap<Integer,Float> values,
ElectricalPotentialUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
MutableFloatElectricalPotentialVector(SortedMap<Integer,FloatElectricalPotential> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ElectricalPotentialVector.
|
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(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.
|
MutableFloatEnergyVector(float[] values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatEnergyVector(FloatEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatEnergyVector(List<Float> values,
EnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatEnergyVector(List<FloatEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatEnergyVector(SortedMap<Integer,Float> values,
EnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatEnergyVector(SortedMap<Integer,FloatEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float EnergyVector.
|
MutableFloatFlowMassVector(float[] values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowMassVector(FloatFlowMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowMassVector(List<Float> values,
FlowMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowMassVector(List<FloatFlowMass> values,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowMassVector(SortedMap<Integer,Float> values,
FlowMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowMassVector(SortedMap<Integer,FloatFlowMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FlowMassVector.
|
MutableFloatFlowVolumeVector(float[] values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatFlowVolumeVector(FloatFlowVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatFlowVolumeVector(List<Float> values,
FlowVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatFlowVolumeVector(List<FloatFlowVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatFlowVolumeVector(SortedMap<Integer,Float> values,
FlowVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatFlowVolumeVector(SortedMap<Integer,FloatFlowVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FlowVolumeVector.
|
MutableFloatForceVector(float[] values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatForceVector(FloatForce[] values,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatForceVector(List<Float> values,
ForceUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatForceVector(List<FloatForce> values,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatForceVector(SortedMap<Integer,Float> values,
ForceUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatForceVector(SortedMap<Integer,FloatForce> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float ForceVector.
|
MutableFloatFrequencyVector(float[] values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatFrequencyVector(FloatFrequency[] values,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatFrequencyVector(List<Float> values,
FrequencyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatFrequencyVector(List<FloatFrequency> values,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatFrequencyVector(SortedMap<Integer,Float> values,
FrequencyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatFrequencyVector(SortedMap<Integer,FloatFrequency> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float FrequencyVector.
|
MutableFloatLengthVector(float[] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLengthVector(FloatLength[] values,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLengthVector(List<Float> values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLengthVector(List<FloatLength> values,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLengthVector(SortedMap<Integer,Float> values,
LengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLengthVector(SortedMap<Integer,FloatLength> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatLengthVector.
|
MutableFloatLinearDensityVector(float[] values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatLinearDensityVector(FloatLinearDensity[] values,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatLinearDensityVector(List<Float> values,
LinearDensityUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatLinearDensityVector(List<FloatLinearDensity> values,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatLinearDensityVector(SortedMap<Integer,Float> values,
LinearDensityUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatLinearDensityVector(SortedMap<Integer,FloatLinearDensity> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float LinearDensityVector.
|
MutableFloatMassVector(float[] values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMassVector(FloatMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMassVector(List<Float> values,
MassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMassVector(List<FloatMass> values,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMassVector(SortedMap<Integer,Float> values,
MassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMassVector(SortedMap<Integer,FloatMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MassVector.
|
MutableFloatMoneyPerAreaVector(float[] values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerAreaVector(FloatMoneyPerArea[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerAreaVector(List<Float> values,
MoneyPerAreaUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerAreaVector(List<FloatMoneyPerArea> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerAreaVector(SortedMap<Integer,Float> values,
MoneyPerAreaUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerAreaVector(SortedMap<Integer,FloatMoneyPerArea> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerAreaVector.
|
MutableFloatMoneyPerDurationVector(float[] values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerDurationVector(FloatMoneyPerDuration[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerDurationVector(List<Float> values,
MoneyPerDurationUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerDurationVector(List<FloatMoneyPerDuration> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerDurationVector(SortedMap<Integer,Float> values,
MoneyPerDurationUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerDurationVector(SortedMap<Integer,FloatMoneyPerDuration> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerDurationVector.
|
MutableFloatMoneyPerEnergyVector(float[] values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerEnergyVector(FloatMoneyPerEnergy[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerEnergyVector(List<Float> values,
MoneyPerEnergyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerEnergyVector(List<FloatMoneyPerEnergy> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerEnergyVector(SortedMap<Integer,Float> values,
MoneyPerEnergyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerEnergyVector(SortedMap<Integer,FloatMoneyPerEnergy> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerEnergyVector.
|
MutableFloatMoneyPerLengthVector(float[] values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerLengthVector(FloatMoneyPerLength[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerLengthVector(List<Float> values,
MoneyPerLengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerLengthVector(List<FloatMoneyPerLength> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerLengthVector(SortedMap<Integer,Float> values,
MoneyPerLengthUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerLengthVector(SortedMap<Integer,FloatMoneyPerLength> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerLengthVector.
|
MutableFloatMoneyPerMassVector(float[] values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerMassVector(FloatMoneyPerMass[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerMassVector(List<Float> values,
MoneyPerMassUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerMassVector(List<FloatMoneyPerMass> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerMassVector(SortedMap<Integer,Float> values,
MoneyPerMassUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerMassVector(SortedMap<Integer,FloatMoneyPerMass> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerMassVector.
|
MutableFloatMoneyPerVolumeVector(float[] values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyPerVolumeVector(FloatMoneyPerVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyPerVolumeVector(List<Float> values,
MoneyPerVolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyPerVolumeVector(List<FloatMoneyPerVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyPerVolumeVector(SortedMap<Integer,Float> values,
MoneyPerVolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyPerVolumeVector(SortedMap<Integer,FloatMoneyPerVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyPerVolumeVector.
|
MutableFloatMoneyVector(float[] values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatMoneyVector(FloatMoney[] values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatMoneyVector(List<Float> values,
MoneyUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatMoneyVector(List<FloatMoney> values,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatMoneyVector(SortedMap<Integer,Float> values,
MoneyUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatMoneyVector(SortedMap<Integer,FloatMoney> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float MoneyVector.
|
MutableFloatPositionVector(float[] values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPositionVector(FloatPosition[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPositionVector(List<Float> values,
PositionUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPositionVector(List<FloatPosition> values,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPositionVector(SortedMap<Integer,Float> values,
PositionUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPositionVector(SortedMap<Integer,FloatPosition> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatPositionVector.
|
MutableFloatPowerVector(float[] values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPowerVector(FloatPower[] values,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPowerVector(List<Float> values,
PowerUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPowerVector(List<FloatPower> values,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPowerVector(SortedMap<Integer,Float> values,
PowerUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPowerVector(SortedMap<Integer,FloatPower> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float PowerVector.
|
MutableFloatPressureVector(float[] values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatPressureVector(FloatPressure[] values,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatPressureVector(List<Float> values,
PressureUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatPressureVector(List<FloatPressure> values,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatPressureVector(SortedMap<Integer,Float> values,
PressureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatPressureVector(SortedMap<Integer,FloatPressure> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float PressureVector.
|
MutableFloatSpeedVector(float[] values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatSpeedVector(FloatSpeed[] values,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatSpeedVector(List<Float> values,
SpeedUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatSpeedVector(List<FloatSpeed> values,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatSpeedVector(SortedMap<Integer,Float> values,
SpeedUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatSpeedVector(SortedMap<Integer,FloatSpeed> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float SpeedVector.
|
MutableFloatTemperatureVector(float[] values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTemperatureVector(FloatTemperature[] values,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTemperatureVector(List<Float> values,
TemperatureUnit unit,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTemperatureVector(List<FloatTemperature> values,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTemperatureVector(SortedMap<Integer,Float> values,
TemperatureUnit unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTemperatureVector(SortedMap<Integer,FloatTemperature> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatTemperatureVector.
|
MutableFloatTimeVector(float[] values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTimeVector(FloatTime[] values,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTimeVector(List<Float> values,
TimeUnit unit,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTimeVector(List<FloatTime> values,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTimeVector(SortedMap<Integer,Float> values,
TimeUnit unit,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTimeVector(SortedMap<Integer,FloatTime> values,
int length,
StorageType storageType)
Construct a new Absolute Mutable FloatTimeVector.
|
MutableFloatTorqueVector(float[] values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatTorqueVector(FloatTorque[] values,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatTorqueVector(List<Float> values,
TorqueUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatTorqueVector(List<FloatTorque> values,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatTorqueVector(SortedMap<Integer,Float> values,
TorqueUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatTorqueVector(SortedMap<Integer,FloatTorque> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float TorqueVector.
|
MutableFloatVolumeVector(float[] values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
MutableFloatVolumeVector(FloatVolume[] values,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
MutableFloatVolumeVector(List<Float> values,
VolumeUnit unit,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
MutableFloatVolumeVector(List<FloatVolume> values,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
MutableFloatVolumeVector(SortedMap<Integer,Float> values,
VolumeUnit unit,
int length,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
MutableFloatVolumeVector(SortedMap<Integer,FloatVolume> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Float VolumeVector.
|
Rel(float[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(float[] values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(FloatScalar.Rel<U>[] values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(FloatScalar.Rel<U>[] values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(List<Float> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(List<Float> values,
U unit,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(List<FloatScalar.Rel<U>> values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(List<FloatScalar.Rel<U>> values,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(SortedMap<Integer,Float> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(SortedMap<Integer,Float> values,
U unit,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(SortedMap<Integer,FloatScalar.Rel<U>> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Rel(SortedMap<Integer,FloatScalar.Rel<U>> values,
int length,
StorageType storageType)
Construct a new Relative Mutable FloatVector.
|
Copyright © 2015–2019 Delft University of Technology. All rights reserved.