| 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 |
DoubleMatrix.checkIndex(int row,
int column)
Check that provided row and column indices are valid.
|
protected static <U extends Unit<U>> |
DoubleMatrix.checkNonEmpty(DoubleScalar<U>[][] dsArray)
Check that a provided array can be used to create some descendant of a DoubleMatrix.
|
protected void |
DoubleMatrix.checkSize(double[][] other)
Centralized size equality check.
|
protected void |
DoubleMatrix.checkSize(DoubleMatrix<?> other)
Centralized size equality check.
|
MutableDoubleMatrix.Abs<U> |
MutableDoubleMatrix.Abs.decrementBy(DoubleMatrix.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
MutableDoubleMatrix.Rel<U> |
MutableDoubleMatrix.Rel.decrementBy(DoubleMatrix.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
protected MutableDoubleMatrix<U> |
MutableDoubleMatrix.decrementByImpl(DoubleMatrix.Rel<U> rel)
Decrement the corresponding values of this Relative DoubleMatrix from the values of this MutableDoubleMatrix.
|
double |
ReadOnlyDoubleMatrixFunctions.determinant()
Compute the determinant of the matrix.
|
double |
DoubleMatrix.determinant()
Compute the determinant of the matrix.
|
DoubleScalar<U> |
ReadOnlyDoubleMatrixFunctions.get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
DoubleScalar.Abs<U> |
MutableDoubleMatrix.Abs.get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
DoubleScalar.Rel<U> |
MutableDoubleMatrix.Rel.get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
DoubleScalar.Abs<U> |
DoubleMatrix.Abs.get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
DoubleScalar.Rel<U> |
DoubleMatrix.Rel.get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
double |
ReadOnlyDoubleMatrixFunctions.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
double |
DoubleMatrix.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
double |
ReadOnlyDoubleMatrixFunctions.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
double |
DoubleMatrix.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
double |
ReadOnlyDoubleMatrixFunctions.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
double |
DoubleMatrix.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
MutableDoubleMatrix.Abs<U> |
MutableDoubleMatrix.Abs.incrementBy(DoubleMatrix.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
MutableDoubleMatrix.Rel<U> |
MutableDoubleMatrix.Rel.incrementBy(DoubleMatrix.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
protected MutableDoubleMatrix<U> |
MutableDoubleMatrix.incrementByImpl(DoubleMatrix.Rel<U> rel)
Increment the values in this MutableDoubleMatrix by the corresponding values in a Relative DoubleMatrix.
|
protected DoubleMatrixDataDense |
DoubleMatrix.initializeDense(double[][] values)
Import the values and convert them into the SI standard unit.
|
protected DoubleMatrixDataDense |
DoubleMatrix.initializeDense(DoubleScalar<U>[][] values)
Construct the matrix and store the values in the standard SI unit.
|
protected DoubleMatrixDataSparse |
DoubleMatrix.initializeSparse(double[][] values)
Import the values and convert them into the SI standard unit.
|
protected DoubleMatrixDataSparse |
DoubleMatrix.initializeSparse(DoubleScalar<U>[][] values)
Construct the matrix and store the values in the standard SI unit.
|
static <U extends Unit<U>> |
DoubleMatrix.interpolate(DoubleMatrix.Abs.Dense<U> zero,
DoubleMatrix.Abs.Dense<U> one,
double ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
DoubleMatrix.interpolate(DoubleMatrix.Abs.Sparse<U> zero,
DoubleMatrix.Abs.Sparse<U> one,
double ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
DoubleMatrix.interpolate(DoubleMatrix.Rel.Dense<U> zero,
DoubleMatrix.Rel.Dense<U> one,
double ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
DoubleMatrix.interpolate(DoubleMatrix.Rel.Sparse<U> zero,
DoubleMatrix.Rel.Sparse<U> one,
double ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Abs.Dense<U> left,
DoubleMatrix.Rel<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Abs.Sparse<U> left,
DoubleMatrix.Rel.Dense<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Abs.Sparse<U> left,
DoubleMatrix.Rel.Sparse<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Sparse<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Rel.Dense<U> left,
DoubleMatrix.Rel<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Rel.Sparse<U> left,
DoubleMatrix.Rel.Dense<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.minus(DoubleMatrix.Rel.Sparse<U> left,
DoubleMatrix.Rel.Sparse<U> right)
Subtract two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Sparse<U>.
|
void |
WriteDoubleMatrixFunctions.normalize()
Normalize the matrix, i.e.
|
void |
MutableDoubleMatrix.normalize()
Normalize the matrix, i.e.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Abs.Dense<U> left,
DoubleMatrix.Rel<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Abs.Sparse<U> left,
DoubleMatrix.Rel.Dense<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Abs.Sparse<U> left,
DoubleMatrix.Rel.Sparse<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Sparse<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Rel.Dense<U> left,
DoubleMatrix.Rel<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Rel.Sparse<U> left,
DoubleMatrix.Rel.Dense<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
DoubleMatrix.plus(DoubleMatrix.Rel.Sparse<U> left,
DoubleMatrix.Rel.Sparse<U> right)
Add two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Sparse<U>.
|
protected MutableDoubleMatrix<U> |
MutableDoubleMatrix.scaleValueByValue(double[][] factor)
Scale the values in this MutableDoubleMatrix by the corresponding values in a double array.
|
protected void |
MutableDoubleMatrix.scaleValueByValue(DoubleMatrix<?> factor)
Scale the values in this MutableDoubleMatrix by the corresponding values in a DoubleMatrix.
|
void |
WriteDoubleMatrixFunctions.set(int row,
int column,
DoubleScalar<U> value)
Replace the value at row, column by the supplied value which is in a compatible unit.
|
void |
MutableDoubleMatrix.set(int row,
int column,
DoubleScalar<U> value)
Replace the value at row, column by the supplied value which is in a compatible unit.
|
void |
WriteDoubleMatrixFunctions.setInUnit(int row,
int column,
double value,
U valueUnit)
Replace the value at row, column by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
MutableDoubleMatrix.setInUnit(int row,
int column,
double value,
U valueUnit)
Replace the value at row, column by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
WriteDoubleMatrixFunctions.setSI(int row,
int column,
double valueSI)
Replace the value at row, column by the supplied value which is expressed in the standard SI unit.
|
void |
MutableDoubleMatrix.setSI(int row,
int column,
double valueSI)
Replace the value at row, column by the supplied value which is expressed in the standard SI unit.
|
static MutableDoubleMatrix.Abs.Dense<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Abs.Dense<?> left,
DoubleMatrix.Abs.Dense<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Dense<SIUnit>.
|
static MutableDoubleMatrix.Abs.Sparse<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Abs.Dense<?> left,
DoubleMatrix.Abs.Sparse<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
DoubleMatrix.times(DoubleMatrix.Abs.Dense<U> left,
double[][] right)
Multiply the values in a DoubleMatrix and a double array value by value and store the result in a new
MutableDoubleMatrix.Abs.Dense<U>.
|
static MutableDoubleMatrix.Abs.Sparse<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Abs.Sparse<?> left,
DoubleMatrix.Abs<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Abs.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
DoubleMatrix.times(DoubleMatrix.Abs.Sparse<U> left,
double[][] right)
Multiply the values in a DoubleMatrix and a double array value by value and store the result in a new
MutableDoubleMatrix.Abs.Sparse<U>.
|
static MutableDoubleMatrix.Rel.Dense<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Rel.Dense<?> left,
DoubleMatrix.Rel.Dense<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Dense<SIUnit>.
|
static MutableDoubleMatrix.Rel.Sparse<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Rel.Dense<?> left,
DoubleMatrix.Rel.Sparse<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
DoubleMatrix.times(DoubleMatrix.Rel.Dense<U> left,
double[][] right)
Multiply the values in a DoubleMatrix and a double array value by value and store the result in a new
MutableDoubleMatrix.Rel.Dense<U>.
|
static MutableDoubleMatrix.Rel.Sparse<SIUnit> |
DoubleMatrix.times(DoubleMatrix.Rel.Sparse<?> left,
DoubleMatrix.Rel<?> right)
Multiply two DoubleMatrices value by value and store the result in a new MutableDoubleMatrix.Rel.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
DoubleMatrix.times(DoubleMatrix.Rel.Sparse<U> left,
double[][] right)
Multiply the values in a DoubleMatrix and a double array value by value and store the result in a new
MutableDoubleMatrix.Rel.Sparse<U>.
|
| Constructor and Description |
|---|
Dense(double[][] values,
U unit)
Construct a new Absolute Dense MutableDoubleMatrix.
|
Dense(double[][] values,
U unit)
Construct a new Relative Dense MutableDoubleMatrix.
|
Dense(double[][] values,
U unit)
Construct a new Absolute Dense Immutable DoubleMatrix.
|
Dense(double[][] values,
U unit)
Construct a new Relative Dense Immutable DoubleMatrix.
|
Dense(DoubleScalar.Abs<U>[][] values)
Construct a new Absolute Dense MutableDoubleMatrix.
|
Dense(DoubleScalar.Abs<U>[][] values)
Construct a new Absolute Dense Immutable DoubleMatrix.
|
Dense(DoubleScalar.Rel<U>[][] values)
Construct a new Relative Dense MutableDoubleMatrix.
|
Dense(DoubleScalar.Rel<U>[][] values)
Construct a new Relative Dense Immutable DoubleMatrix.
|
DoubleMatrixDataDense(double[][] matrixSI)
Create a vector with dense data.
|
DoubleMatrixDataDense(double[] matrixSI,
int rows,
int cols)
Create a vector with dense data.
|
DoubleMatrixDataSparse(double[][] matrixSI)
Create a vector with sparse data.
|
Sparse(double[][] values,
U unit)
Construct a new Absolute Sparse MutableDoubleMatrix.
|
Sparse(double[][] values,
U unit)
Construct a new Relative Sparse MutableDoubleMatrix.
|
Sparse(double[][] values,
U unit)
Construct a new Absolute Sparse Immutable DoubleMatrix.
|
Sparse(double[][] values,
U unit)
Construct a new Relative Sparse Immutable DoubleMatrix.
|
Sparse(DoubleScalar.Abs<U>[][] values)
Construct a new Absolute Sparse MutableDoubleMatrix.
|
Sparse(DoubleScalar.Abs<U>[][] values)
Construct a new Absolute Sparse Immutable DoubleMatrix.
|
Sparse(DoubleScalar.Rel<U>[][] values)
Construct a new Relative Sparse MutableDoubleMatrix.
|
Sparse(DoubleScalar.Rel<U>[][] values)
Construct a new Relative Sparse Immutable DoubleMatrix.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
DoubleVector.checkIndex(int index)
Check that a provided index is valid.
|
protected void |
DoubleVector.checkSize(double[] other)
Centralized size equality check.
|
protected void |
DoubleVector.checkSize(DoubleVector<?> other)
Centralized size equality check.
|
MutableDoubleVector.Abs<U> |
MutableDoubleVector.Abs.decrementBy(DoubleVector.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
MutableDoubleVector.Rel<U> |
MutableDoubleVector.Rel.decrementBy(DoubleVector.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
protected MutableDoubleVector<U> |
MutableDoubleVector.decrementByImpl(DoubleVector.Rel<U> rel)
Decrement the corresponding values of this Relative DoubleVector from the values of this MutableDoubleVector.
|
AccelerationVector |
MutableAccelerationVector.divide(AccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AccelerationVector |
AccelerationVector.divide(AccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.divide(AnglePlaneVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
AnglePlaneVector.Rel.divide(AnglePlaneVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.divide(AngleSlopeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
AngleSlopeVector.Rel.divide(AngleSlopeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.divide(AngleSolidVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSolidVector |
AngleSolidVector.divide(AngleSolidVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.divide(AreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AreaVector |
AreaVector.divide(AreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.divide(DensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DensityVector |
DensityVector.divide(DensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.divide(DimensionlessVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
DimensionlessVector.Rel.divide(DimensionlessVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DoubleVector.Rel<U> |
MutableDoubleVector.Rel.divide(DoubleVector.Rel<U> rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DoubleVector.Rel<U> |
DoubleVector.Rel.divide(DoubleVector.Rel<U> rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.divide(ElectricalChargeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalChargeVector |
ElectricalChargeVector.divide(ElectricalChargeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.divide(ElectricalCurrentVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalCurrentVector |
ElectricalCurrentVector.divide(ElectricalCurrentVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.divide(ElectricalPotentialVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalPotentialVector |
ElectricalPotentialVector.divide(ElectricalPotentialVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.divide(ElectricalResistanceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalResistanceVector |
ElectricalResistanceVector.divide(ElectricalResistanceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.divide(EnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
EnergyVector |
EnergyVector.divide(EnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.divide(FlowMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowMassVector |
FlowMassVector.divide(FlowMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.divide(FlowVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowVolumeVector |
FlowVolumeVector.divide(FlowVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.divide(ForceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ForceVector |
ForceVector.divide(ForceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.divide(FrequencyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FrequencyVector |
FrequencyVector.divide(FrequencyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.divide(LengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LengthVector.Rel |
LengthVector.Rel.divide(LengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.divide(LinearDensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LinearDensityVector |
LinearDensityVector.divide(LinearDensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.divide(MassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MassVector |
MassVector.divide(MassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.divide(MoneyPerAreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MoneyPerAreaVector.divide(MoneyPerAreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.divide(MoneyPerEnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MoneyPerEnergyVector.divide(MoneyPerEnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.divide(MoneyPerLengthVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MoneyPerLengthVector.divide(MoneyPerLengthVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.divide(MoneyPerMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerMassVector |
MoneyPerMassVector.divide(MoneyPerMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.divide(MoneyPerTimeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MoneyPerTimeVector.divide(MoneyPerTimeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.divide(MoneyPerVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MoneyPerVolumeVector.divide(MoneyPerVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.divide(MoneyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyVector |
MoneyVector.divide(MoneyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AccelerationVector |
MutableAccelerationVector.divide(MutableAccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.divide(MutableAnglePlaneVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.divide(MutableAngleSlopeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.divide(MutableAngleSolidVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.divide(MutableAreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.divide(MutableDensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.divide(MutableDimensionlessVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.divide(MutableElectricalChargeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.divide(MutableElectricalCurrentVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.divide(MutableElectricalPotentialVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.divide(MutableElectricalResistanceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.divide(MutableEnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.divide(MutableFlowMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.divide(MutableFlowVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.divide(MutableForceVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.divide(MutableFrequencyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.divide(MutableLengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.divide(MutableLinearDensityVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.divide(MutableMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.divide(MutableMoneyPerAreaVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.divide(MutableMoneyPerEnergyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.divide(MutableMoneyPerLengthVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.divide(MutableMoneyPerMassVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.divide(MutableMoneyPerTimeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.divide(MutableMoneyPerVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.divide(MutableMoneyVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.divide(MutablePowerVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.divide(MutablePressureVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.divide(MutableSpeedVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.divide(MutableTemperatureVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.divide(MutableTimeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.divide(MutableTorqueVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.divide(MutableVolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PowerVector |
PowerVector.divide(PowerVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.divide(PowerVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PressureVector |
PressureVector.divide(PressureVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.divide(PressureVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
SpeedVector |
SpeedVector.divide(SpeedVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.divide(SpeedVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TemperatureVector.Rel |
TemperatureVector.Rel.divide(TemperatureVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.divide(TemperatureVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TimeVector.Rel |
TimeVector.Rel.divide(TimeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.divide(TimeVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TorqueVector |
TorqueVector.divide(TorqueVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.divide(TorqueVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
VolumeVector |
VolumeVector.divide(VolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.divide(VolumeVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
Volume |
VolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Torque |
TorqueVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Time.Abs |
TimeVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Time.Rel |
TimeVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Temperature.Abs |
TemperatureVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Temperature.Rel |
TemperatureVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Speed |
SpeedVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Pressure |
PressureVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Power |
PowerVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Volume |
MutableVolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Torque |
MutableTorqueVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Time.Abs |
MutableTimeVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Time.Rel |
MutableTimeVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Temperature.Abs |
MutableTemperatureVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Temperature.Rel |
MutableTemperatureVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Speed |
MutableSpeedVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Pressure |
MutablePressureVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Power |
MutablePowerVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Money |
MutableMoneyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerVolume |
MutableMoneyPerVolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerTime |
MutableMoneyPerTimeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerMass |
MutableMoneyPerMassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerLength |
MutableMoneyPerLengthVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerEnergy |
MutableMoneyPerEnergyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerArea |
MutableMoneyPerAreaVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Mass |
MutableMassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
LinearDensity |
MutableLinearDensityVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Length.Abs |
MutableLengthVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Length.Rel |
MutableLengthVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Frequency |
MutableFrequencyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Force |
MutableForceVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
FlowVolume |
MutableFlowVolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
FlowMass |
MutableFlowMassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Energy |
MutableEnergyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalResistance |
MutableElectricalResistanceVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalPotential |
MutableElectricalPotentialVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalCurrent |
MutableElectricalCurrentVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalCharge |
MutableElectricalChargeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
DoubleScalar.Abs<U> |
MutableDoubleVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
DoubleScalar.Rel<U> |
MutableDoubleVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Dimensionless.Abs |
MutableDimensionlessVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Dimensionless.Rel |
MutableDimensionlessVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Density |
MutableDensityVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Area |
MutableAreaVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSolid |
MutableAngleSolidVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSlope.Abs |
MutableAngleSlopeVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSlope.Rel |
MutableAngleSlopeVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AnglePlane.Abs |
MutableAnglePlaneVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AnglePlane.Rel |
MutableAnglePlaneVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Acceleration |
MutableAccelerationVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Money |
MoneyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerVolume |
MoneyPerVolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerTime |
MoneyPerTimeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerMass |
MoneyPerMassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerLength |
MoneyPerLengthVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerEnergy |
MoneyPerEnergyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
MoneyPerArea |
MoneyPerAreaVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Mass |
MassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
LinearDensity |
LinearDensityVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Length.Abs |
LengthVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Length.Rel |
LengthVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Frequency |
FrequencyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Force |
ForceVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
FlowVolume |
FlowVolumeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
FlowMass |
FlowMassVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Energy |
EnergyVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalResistance |
ElectricalResistanceVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalPotential |
ElectricalPotentialVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalCurrent |
ElectricalCurrentVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
ElectricalCharge |
ElectricalChargeVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
DoubleScalar<U> |
DoubleVectorInterface.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
DoubleScalar.Abs<U> |
DoubleVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
DoubleScalar.Rel<U> |
DoubleVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Dimensionless.Abs |
DimensionlessVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Dimensionless.Rel |
DimensionlessVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Density |
DensityVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Area |
AreaVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSolid |
AngleSolidVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSlope.Abs |
AngleSlopeVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AngleSlope.Rel |
AngleSlopeVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AnglePlane.Abs |
AnglePlaneVector.Abs.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
AnglePlane.Rel |
AnglePlaneVector.Rel.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
Acceleration |
AccelerationVector.get(int index)
Retrieve the value stored at a specified index as a DoubleScalar.
|
double |
DoubleVectorInterface.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
double |
DoubleVector.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 |
DoubleVector.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 |
DoubleVector.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
MutableDoubleVector.Abs<U> |
MutableDoubleVector.Abs.incrementBy(DoubleVector.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
MutableDoubleVector.Rel<U> |
MutableDoubleVector.Rel.incrementBy(DoubleVector.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
protected MutableDoubleVector<U> |
MutableDoubleVector.incrementByImpl(DoubleVector.Rel<U> rel)
Increment the values in this MutableDoubleVector by the corresponding values in a Relative DoubleVector.
|
static void |
Test.main(String[] args) |
AccelerationVector |
MutableAccelerationVector.minus(AccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AccelerationVector |
AccelerationVector.minus(AccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Abs.minus(AnglePlaneVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
AnglePlaneVector.Rel |
AnglePlaneVector.Abs.minus(AnglePlaneVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
AnglePlaneVector.Abs |
MutableAnglePlaneVector.Abs.minus(AnglePlaneVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.minus(AnglePlaneVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AnglePlaneVector.Abs |
AnglePlaneVector.Abs.minus(AnglePlaneVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
AnglePlaneVector.Rel |
AnglePlaneVector.Rel.minus(AnglePlaneVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Abs.minus(AngleSlopeVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
AngleSlopeVector.Rel |
AngleSlopeVector.Abs.minus(AngleSlopeVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
AngleSlopeVector.Abs |
MutableAngleSlopeVector.Abs.minus(AngleSlopeVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.minus(AngleSlopeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSlopeVector.Abs |
AngleSlopeVector.Abs.minus(AngleSlopeVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
AngleSlopeVector.Rel |
AngleSlopeVector.Rel.minus(AngleSlopeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.minus(AngleSolidVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSolidVector |
AngleSolidVector.minus(AngleSolidVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.minus(AreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AreaVector |
AreaVector.minus(AreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.minus(DensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DensityVector |
DensityVector.minus(DensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Abs.minus(DimensionlessVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
DimensionlessVector.Rel |
DimensionlessVector.Abs.minus(DimensionlessVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
DimensionlessVector.Abs |
MutableDimensionlessVector.Abs.minus(DimensionlessVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.minus(DimensionlessVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DimensionlessVector.Abs |
DimensionlessVector.Abs.minus(DimensionlessVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
DimensionlessVector.Rel |
DimensionlessVector.Rel.minus(DimensionlessVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DoubleVector.Rel<U> |
MutableDoubleVector.Abs.minus(DoubleVector.Abs<U> rel)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
DoubleVector.Rel<U> |
DoubleVector.Abs.minus(DoubleVector.Abs<U> abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
DoubleVector.Abs<U> |
MutableDoubleVector.Abs.minus(DoubleVector.Rel<U> rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
DoubleVector.Rel<U> |
MutableDoubleVector.Rel.minus(DoubleVector.Rel<U> rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DoubleVector.Abs<U> |
DoubleVector.Abs.minus(DoubleVector.Rel<U> rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
DoubleVector.Rel<U> |
DoubleVector.Rel.minus(DoubleVector.Rel<U> rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.minus(ElectricalChargeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalChargeVector |
ElectricalChargeVector.minus(ElectricalChargeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.minus(ElectricalCurrentVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
ElectricalCurrentVector.minus(ElectricalCurrentVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.minus(ElectricalPotentialVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
ElectricalPotentialVector.minus(ElectricalPotentialVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.minus(ElectricalResistanceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
ElectricalResistanceVector.minus(ElectricalResistanceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.minus(EnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
EnergyVector |
EnergyVector.minus(EnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.minus(FlowMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowMassVector |
FlowMassVector.minus(FlowMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.minus(FlowVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowVolumeVector |
FlowVolumeVector.minus(FlowVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.minus(ForceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ForceVector |
ForceVector.minus(ForceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.minus(FrequencyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FrequencyVector |
FrequencyVector.minus(FrequencyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Abs.minus(LengthVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
LengthVector.Rel |
LengthVector.Abs.minus(LengthVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
LengthVector.Abs |
MutableLengthVector.Abs.minus(LengthVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.minus(LengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LengthVector.Abs |
LengthVector.Abs.minus(LengthVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
LengthVector.Rel |
LengthVector.Rel.minus(LengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.minus(LinearDensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LinearDensityVector |
LinearDensityVector.minus(LinearDensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.minus(MassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MassVector |
MassVector.minus(MassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.minus(MoneyPerAreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MoneyPerAreaVector.minus(MoneyPerAreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.minus(MoneyPerEnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MoneyPerEnergyVector.minus(MoneyPerEnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.minus(MoneyPerLengthVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MoneyPerLengthVector.minus(MoneyPerLengthVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.minus(MoneyPerMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MoneyPerMassVector.minus(MoneyPerMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.minus(MoneyPerTimeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MoneyPerTimeVector.minus(MoneyPerTimeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.minus(MoneyPerVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MoneyPerVolumeVector.minus(MoneyPerVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.minus(MoneyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyVector |
MoneyVector.minus(MoneyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AccelerationVector |
MutableAccelerationVector.minus(MutableAccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.minus(MutableAnglePlaneVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.minus(MutableAngleSlopeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.minus(MutableAngleSolidVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.minus(MutableAreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.minus(MutableDensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.minus(MutableDimensionlessVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.minus(MutableElectricalChargeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.minus(MutableElectricalCurrentVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.minus(MutableElectricalPotentialVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.minus(MutableElectricalResistanceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.minus(MutableEnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.minus(MutableFlowMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.minus(MutableFlowVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.minus(MutableForceVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.minus(MutableFrequencyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.minus(MutableLengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.minus(MutableLinearDensityVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.minus(MutableMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.minus(MutableMoneyPerAreaVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.minus(MutableMoneyPerEnergyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.minus(MutableMoneyPerLengthVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.minus(MutableMoneyPerMassVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.minus(MutableMoneyPerTimeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.minus(MutableMoneyPerVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.minus(MutableMoneyVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.minus(MutablePowerVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.minus(MutablePressureVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.minus(MutableSpeedVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.minus(MutableTemperatureVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.minus(MutableTimeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.minus(MutableTorqueVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.minus(MutableVolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PowerVector |
PowerVector.minus(PowerVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.minus(PowerVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PressureVector |
PressureVector.minus(PressureVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.minus(PressureVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
SpeedVector |
SpeedVector.minus(SpeedVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.minus(SpeedVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
TemperatureVector.Abs.minus(TemperatureVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Abs.minus(TemperatureVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
TemperatureVector.Abs |
TemperatureVector.Abs.minus(TemperatureVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
TemperatureVector.Rel |
TemperatureVector.Rel.minus(TemperatureVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TemperatureVector.Abs |
MutableTemperatureVector.Abs.minus(TemperatureVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.minus(TemperatureVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TimeVector.Rel |
TimeVector.Abs.minus(TimeVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Abs.minus(TimeVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
TimeVector.Abs |
TimeVector.Abs.minus(TimeVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
TimeVector.Rel |
TimeVector.Rel.minus(TimeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TimeVector.Abs |
MutableTimeVector.Abs.minus(TimeVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.minus(TimeVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TorqueVector |
TorqueVector.minus(TorqueVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.minus(TorqueVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
VolumeVector |
VolumeVector.minus(VolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.minus(VolumeVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
void |
MutableDoubleVectorInterface.normalize()
Normalize the vector, i.e.
|
void |
MutableDoubleVector.normalize()
Normalize the vector, i.e.
|
AccelerationVector |
MutableAccelerationVector.plus(AccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AccelerationVector |
AccelerationVector.plus(AccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AnglePlaneVector.Abs |
MutableAnglePlaneVector.Abs.plus(AnglePlaneVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.plus(AnglePlaneVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AnglePlaneVector.Abs |
AnglePlaneVector.Abs.plus(AnglePlaneVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
AnglePlaneVector.Rel |
AnglePlaneVector.Rel.plus(AnglePlaneVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSlopeVector.Abs |
MutableAngleSlopeVector.Abs.plus(AngleSlopeVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.plus(AngleSlopeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSlopeVector.Abs |
AngleSlopeVector.Abs.plus(AngleSlopeVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
AngleSlopeVector.Rel |
AngleSlopeVector.Rel.plus(AngleSlopeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.plus(AngleSolidVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSolidVector |
AngleSolidVector.plus(AngleSolidVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.plus(AreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AreaVector |
AreaVector.plus(AreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.plus(DensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DensityVector |
DensityVector.plus(DensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DimensionlessVector.Abs |
MutableDimensionlessVector.Abs.plus(DimensionlessVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.plus(DimensionlessVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DimensionlessVector.Abs |
DimensionlessVector.Abs.plus(DimensionlessVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
DimensionlessVector.Rel |
DimensionlessVector.Rel.plus(DimensionlessVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DoubleVector.Abs<U> |
MutableDoubleVector.Rel.plus(DoubleVector.Abs<U> abs)
Add an Absolute value to this Relative value for a vector or matrix.
|
DoubleVector.Abs<U> |
DoubleVector.Rel.plus(DoubleVector.Abs<U> rel)
Add an Absolute value to this Relative value for a vector or matrix.
|
DoubleVector.Abs<U> |
MutableDoubleVector.Abs.plus(DoubleVector.Rel<U> rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
DoubleVector.Rel<U> |
MutableDoubleVector.Rel.plus(DoubleVector.Rel<U> rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DoubleVector.Abs<U> |
DoubleVector.Abs.plus(DoubleVector.Rel<U> rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
DoubleVector.Rel<U> |
DoubleVector.Rel.plus(DoubleVector.Rel<U> rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.plus(ElectricalChargeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalChargeVector |
ElectricalChargeVector.plus(ElectricalChargeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.plus(ElectricalCurrentVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
ElectricalCurrentVector.plus(ElectricalCurrentVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.plus(ElectricalPotentialVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
ElectricalPotentialVector.plus(ElectricalPotentialVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.plus(ElectricalResistanceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
ElectricalResistanceVector.plus(ElectricalResistanceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.plus(EnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
EnergyVector |
EnergyVector.plus(EnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.plus(FlowMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowMassVector |
FlowMassVector.plus(FlowMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.plus(FlowVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowVolumeVector |
FlowVolumeVector.plus(FlowVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.plus(ForceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ForceVector |
ForceVector.plus(ForceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.plus(FrequencyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FrequencyVector |
FrequencyVector.plus(FrequencyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LengthVector.Abs |
MutableLengthVector.Abs.plus(LengthVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.plus(LengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LengthVector.Abs |
LengthVector.Abs.plus(LengthVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
LengthVector.Rel |
LengthVector.Rel.plus(LengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.plus(LinearDensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LinearDensityVector |
LinearDensityVector.plus(LinearDensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.plus(MassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MassVector |
MassVector.plus(MassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.plus(MoneyPerAreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MoneyPerAreaVector.plus(MoneyPerAreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.plus(MoneyPerEnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MoneyPerEnergyVector.plus(MoneyPerEnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.plus(MoneyPerLengthVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MoneyPerLengthVector.plus(MoneyPerLengthVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.plus(MoneyPerMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MoneyPerMassVector.plus(MoneyPerMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.plus(MoneyPerTimeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MoneyPerTimeVector.plus(MoneyPerTimeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.plus(MoneyPerVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MoneyPerVolumeVector.plus(MoneyPerVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.plus(MoneyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyVector |
MoneyVector.plus(MoneyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AccelerationVector |
MutableAccelerationVector.plus(MutableAccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.plus(MutableAnglePlaneVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.plus(MutableAngleSlopeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.plus(MutableAngleSolidVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.plus(MutableAreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.plus(MutableDensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.plus(MutableDimensionlessVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.plus(MutableElectricalChargeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.plus(MutableElectricalCurrentVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.plus(MutableElectricalPotentialVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.plus(MutableElectricalResistanceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.plus(MutableEnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.plus(MutableFlowMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.plus(MutableFlowVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.plus(MutableForceVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.plus(MutableFrequencyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.plus(MutableLengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.plus(MutableLinearDensityVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.plus(MutableMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.plus(MutableMoneyPerAreaVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.plus(MutableMoneyPerEnergyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.plus(MutableMoneyPerLengthVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.plus(MutableMoneyPerMassVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.plus(MutableMoneyPerTimeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.plus(MutableMoneyPerVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.plus(MutableMoneyVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.plus(MutablePowerVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.plus(MutablePressureVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.plus(MutableSpeedVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.plus(MutableTemperatureVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.plus(MutableTimeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.plus(MutableTorqueVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.plus(MutableVolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PowerVector |
PowerVector.plus(PowerVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.plus(PowerVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PressureVector |
PressureVector.plus(PressureVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.plus(PressureVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
SpeedVector |
SpeedVector.plus(SpeedVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.plus(SpeedVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TemperatureVector.Abs |
TemperatureVector.Abs.plus(TemperatureVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
TemperatureVector.Rel |
TemperatureVector.Rel.plus(TemperatureVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TemperatureVector.Abs |
MutableTemperatureVector.Abs.plus(TemperatureVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.plus(TemperatureVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TimeVector.Abs |
TimeVector.Abs.plus(TimeVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
TimeVector.Rel |
TimeVector.Rel.plus(TimeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TimeVector.Abs |
MutableTimeVector.Abs.plus(TimeVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.plus(TimeVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TorqueVector |
TorqueVector.plus(TorqueVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.plus(TorqueVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
VolumeVector |
VolumeVector.plus(VolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.plus(VolumeVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
protected MutableDoubleVector<U> |
MutableDoubleVector.scaleValueByValue(double[] factor)
Scale the values in this MutableDoubleVector by the corresponding values in a double array.
|
protected void |
MutableDoubleVector.scaleValueByValue(DoubleVector<?> factor)
Scale the values in this MutableDoubleVector by the corresponding values in a DoubleVector.
|
void |
MutableDoubleVectorInterface.set(int index,
DoubleScalar<U> value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
MutableDoubleVector.set(int index,
DoubleScalar<U> value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
MutableDoubleVectorInterface.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 |
MutableDoubleVector.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 |
MutableDoubleVectorInterface.setSI(int index,
double valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
void |
MutableDoubleVector.setSI(int index,
double valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
AccelerationVector |
MutableAccelerationVector.times(AccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AccelerationVector |
AccelerationVector.times(AccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.times(AnglePlaneVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
AnglePlaneVector.Rel.times(AnglePlaneVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.times(AngleSlopeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
AngleSlopeVector.Rel.times(AngleSlopeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.times(AngleSolidVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSolidVector |
AngleSolidVector.times(AngleSolidVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.times(AreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AreaVector |
AreaVector.times(AreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.times(DensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DensityVector |
DensityVector.times(DensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.times(DimensionlessVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
DimensionlessVector.Rel.times(DimensionlessVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DoubleVector.Rel<U> |
MutableDoubleVector.Rel.times(DoubleVector.Rel<U> rel)
Multiply a Relative value by this Relative value for a vector or matrix.
|
DoubleVector.Rel<U> |
DoubleVector.Rel.times(DoubleVector.Rel<U> rel)
Multiply a Relative value by this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.times(ElectricalChargeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalChargeVector |
ElectricalChargeVector.times(ElectricalChargeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.times(ElectricalCurrentVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
ElectricalCurrentVector.times(ElectricalCurrentVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.times(ElectricalPotentialVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
ElectricalPotentialVector.times(ElectricalPotentialVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.times(ElectricalResistanceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
ElectricalResistanceVector.times(ElectricalResistanceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.times(EnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
EnergyVector |
EnergyVector.times(EnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.times(FlowMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowMassVector |
FlowMassVector.times(FlowMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.times(FlowVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowVolumeVector |
FlowVolumeVector.times(FlowVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.times(ForceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ForceVector |
ForceVector.times(ForceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.times(FrequencyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FrequencyVector |
FrequencyVector.times(FrequencyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.times(LengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LengthVector.Rel |
LengthVector.Rel.times(LengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.times(LinearDensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LinearDensityVector |
LinearDensityVector.times(LinearDensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.times(MassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MassVector |
MassVector.times(MassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.times(MoneyPerAreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MoneyPerAreaVector.times(MoneyPerAreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.times(MoneyPerEnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MoneyPerEnergyVector.times(MoneyPerEnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.times(MoneyPerLengthVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MoneyPerLengthVector.times(MoneyPerLengthVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.times(MoneyPerMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MoneyPerMassVector.times(MoneyPerMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.times(MoneyPerTimeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MoneyPerTimeVector.times(MoneyPerTimeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.times(MoneyPerVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MoneyPerVolumeVector.times(MoneyPerVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.times(MoneyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyVector |
MoneyVector.times(MoneyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AccelerationVector |
MutableAccelerationVector.times(MutableAccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AnglePlaneVector.Rel |
MutableAnglePlaneVector.Rel.times(MutableAnglePlaneVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSlopeVector.Rel |
MutableAngleSlopeVector.Rel.times(MutableAngleSlopeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AngleSolidVector |
MutableAngleSolidVector.times(MutableAngleSolidVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
AreaVector |
MutableAreaVector.times(MutableAreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DensityVector |
MutableDensityVector.times(MutableDensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
DimensionlessVector.Rel |
MutableDimensionlessVector.Rel.times(MutableDimensionlessVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalChargeVector |
MutableElectricalChargeVector.times(MutableElectricalChargeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalCurrentVector |
MutableElectricalCurrentVector.times(MutableElectricalCurrentVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalPotentialVector |
MutableElectricalPotentialVector.times(MutableElectricalPotentialVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ElectricalResistanceVector |
MutableElectricalResistanceVector.times(MutableElectricalResistanceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
EnergyVector |
MutableEnergyVector.times(MutableEnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowMassVector |
MutableFlowMassVector.times(MutableFlowMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FlowVolumeVector |
MutableFlowVolumeVector.times(MutableFlowVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
ForceVector |
MutableForceVector.times(MutableForceVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FrequencyVector |
MutableFrequencyVector.times(MutableFrequencyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LengthVector.Rel |
MutableLengthVector.Rel.times(MutableLengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
LinearDensityVector |
MutableLinearDensityVector.times(MutableLinearDensityVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MassVector |
MutableMassVector.times(MutableMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerAreaVector |
MutableMoneyPerAreaVector.times(MutableMoneyPerAreaVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerEnergyVector |
MutableMoneyPerEnergyVector.times(MutableMoneyPerEnergyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerLengthVector |
MutableMoneyPerLengthVector.times(MutableMoneyPerLengthVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerMassVector |
MutableMoneyPerMassVector.times(MutableMoneyPerMassVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerTimeVector |
MutableMoneyPerTimeVector.times(MutableMoneyPerTimeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyPerVolumeVector |
MutableMoneyPerVolumeVector.times(MutableMoneyPerVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
MoneyVector |
MutableMoneyVector.times(MutableMoneyVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.times(MutablePowerVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.times(MutablePressureVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.times(MutableSpeedVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.times(MutableTemperatureVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.times(MutableTimeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.times(MutableTorqueVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.times(MutableVolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PowerVector |
PowerVector.times(PowerVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PowerVector |
MutablePowerVector.times(PowerVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PressureVector |
PressureVector.times(PressureVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
PressureVector |
MutablePressureVector.times(PressureVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
SpeedVector |
SpeedVector.times(SpeedVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
SpeedVector |
MutableSpeedVector.times(SpeedVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
TemperatureVector.Rel.times(TemperatureVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TemperatureVector.Rel |
MutableTemperatureVector.Rel.times(TemperatureVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TimeVector.Rel |
TimeVector.Rel.times(TimeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TimeVector.Rel |
MutableTimeVector.Rel.times(TimeVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TorqueVector |
TorqueVector.times(TorqueVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
TorqueVector |
MutableTorqueVector.times(TorqueVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
VolumeVector |
VolumeVector.times(VolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
VolumeVector |
MutableVolumeVector.times(VolumeVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
| Constructor and Description |
|---|
Dense(Acceleration[] values)
Construct a new Relative Dense Immutable Acceleration Vector.
|
Dense(Acceleration[] values)
Construct a new Relative Dense Immutable Acceleration Vector.
|
Dense(AnglePlane.Abs[] values)
Construct a new Absolute Dense Mutable AnglePlaneVector.
|
Dense(AnglePlane.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(AnglePlane.Rel[] values)
Construct a new Relative Dense Immutable AnglePlane Vector.
|
Dense(AnglePlane.Rel[] values)
Construct a new Relative Dense Immutable AnglePlane Vector.
|
Dense(AngleSlope.Abs[] values)
Construct a new Absolute Dense Mutable AngleSlopeVector.
|
Dense(AngleSlope.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(AngleSlope.Rel[] values)
Construct a new Relative Dense Immutable AngleSlope Vector.
|
Dense(AngleSlope.Rel[] values)
Construct a new Relative Dense Immutable AngleSlope Vector.
|
Dense(AngleSolid[] values)
Construct a new Relative Dense Immutable AngleSolid Vector.
|
Dense(AngleSolid[] values)
Construct a new Relative Dense Immutable AngleSolid Vector.
|
Dense(Area[] values)
Construct a new Relative Dense Immutable Area Vector.
|
Dense(Area[] values)
Construct a new Relative Dense Immutable Area Vector.
|
Dense(Density[] values)
Construct a new Relative Dense Immutable Density Vector.
|
Dense(Density[] values)
Construct a new Relative Dense Immutable Density Vector.
|
Dense(Dimensionless.Abs[] values)
Construct a new Absolute Dense Mutable DimensionlessVector.
|
Dense(Dimensionless.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(Dimensionless.Rel[] values)
Construct a new Relative Dense Immutable Dimensionless Vector.
|
Dense(Dimensionless.Rel[] values)
Construct a new Relative Dense Immutable Dimensionless Vector.
|
Dense(double[] values,
AccelerationUnit unit)
Construct a new Dense Immutable Double Acceleration Vector.
|
Dense(double[] values,
AccelerationUnit unit)
Construct a new Dense Immutable Double Acceleration Vector.
|
Dense(double[] values,
AnglePlaneUnit unit)
Construct a new Absolute Dense Mutable AnglePlaneVector.
|
Dense(double[] values,
AnglePlaneUnit unit)
Construct a new Dense Immutable Double AnglePlane Vector.
|
Dense(double[] values,
AnglePlaneUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
AnglePlaneUnit unit)
Construct a new Dense Immutable Double AnglePlane Vector.
|
Dense(double[] values,
AngleSlopeUnit unit)
Construct a new Absolute Dense Mutable AngleSlopeVector.
|
Dense(double[] values,
AngleSlopeUnit unit)
Construct a new Dense Immutable Double AngleSlope Vector.
|
Dense(double[] values,
AngleSlopeUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
AngleSlopeUnit unit)
Construct a new Dense Immutable Double AngleSlope Vector.
|
Dense(double[] values,
AngleSolidUnit unit)
Construct a new Dense Immutable Double AngleSolid Vector.
|
Dense(double[] values,
AngleSolidUnit unit)
Construct a new Dense Immutable Double AngleSolid Vector.
|
Dense(double[] values,
AreaUnit unit)
Construct a new Dense Immutable Double Area Vector.
|
Dense(double[] values,
AreaUnit unit)
Construct a new Dense Immutable Double Area Vector.
|
Dense(double[] values,
DensityUnit unit)
Construct a new Dense Immutable Double Density Vector.
|
Dense(double[] values,
DensityUnit unit)
Construct a new Dense Immutable Double Density Vector.
|
Dense(double[] values,
DimensionlessUnit unit)
Construct a new Absolute Dense Mutable DimensionlessVector.
|
Dense(double[] values,
DimensionlessUnit unit)
Construct a new Dense Immutable Double Dimensionless Vector.
|
Dense(double[] values,
DimensionlessUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
DimensionlessUnit unit)
Construct a new Dense Immutable Double Dimensionless Vector.
|
Dense(double[] values,
ElectricalChargeUnit unit)
Construct a new Dense Immutable Double ElectricalCharge Vector.
|
Dense(double[] values,
ElectricalChargeUnit unit)
Construct a new Dense Immutable Double ElectricalCharge Vector.
|
Dense(double[] values,
ElectricalCurrentUnit unit)
Construct a new Dense Immutable Double ElectricalCurrent Vector.
|
Dense(double[] values,
ElectricalCurrentUnit unit)
Construct a new Dense Immutable Double ElectricalCurrent Vector.
|
Dense(double[] values,
ElectricalPotentialUnit unit)
Construct a new Dense Immutable Double ElectricalPotential Vector.
|
Dense(double[] values,
ElectricalPotentialUnit unit)
Construct a new Dense Immutable Double ElectricalPotential Vector.
|
Dense(double[] values,
ElectricalResistanceUnit unit)
Construct a new Dense Immutable Double ElectricalResistance Vector.
|
Dense(double[] values,
ElectricalResistanceUnit unit)
Construct a new Dense Immutable Double ElectricalResistance Vector.
|
Dense(double[] values,
EnergyUnit unit)
Construct a new Dense Immutable Double Energy Vector.
|
Dense(double[] values,
EnergyUnit unit)
Construct a new Dense Immutable Double Energy Vector.
|
Dense(double[] values,
FlowMassUnit unit)
Construct a new Dense Immutable Double FlowMass Vector.
|
Dense(double[] values,
FlowMassUnit unit)
Construct a new Dense Immutable Double FlowMass Vector.
|
Dense(double[] values,
FlowVolumeUnit unit)
Construct a new Dense Immutable Double FlowVolume Vector.
|
Dense(double[] values,
FlowVolumeUnit unit)
Construct a new Dense Immutable Double FlowVolume Vector.
|
Dense(double[] values,
ForceUnit unit)
Construct a new Dense Immutable Double Force Vector.
|
Dense(double[] values,
ForceUnit unit)
Construct a new Dense Immutable Double Force Vector.
|
Dense(double[] values,
FrequencyUnit unit)
Construct a new Dense Immutable Double Frequency Vector.
|
Dense(double[] values,
FrequencyUnit unit)
Construct a new Dense Immutable Double Frequency Vector.
|
Dense(double[] values,
LengthUnit unit)
Construct a new Absolute Dense Mutable LengthVector.
|
Dense(double[] values,
LengthUnit unit)
Construct a new Dense Immutable Double Length Vector.
|
Dense(double[] values,
LengthUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
LengthUnit unit)
Construct a new Dense Immutable Double Length Vector.
|
Dense(double[] values,
LinearDensityUnit unit)
Construct a new Dense Immutable Double LinearDensity Vector.
|
Dense(double[] values,
LinearDensityUnit unit)
Construct a new Dense Immutable Double LinearDensity Vector.
|
Dense(double[] values,
MassUnit unit)
Construct a new Dense Immutable Double Mass Vector.
|
Dense(double[] values,
MassUnit unit)
Construct a new Dense Immutable Double Mass Vector.
|
Dense(double[] values,
MoneyPerAreaUnit unit)
Construct a new Dense Immutable Double MoneyPerArea Vector.
|
Dense(double[] values,
MoneyPerAreaUnit unit)
Construct a new Dense Immutable Double MoneyPerArea Vector.
|
Dense(double[] values,
MoneyPerEnergyUnit unit)
Construct a new Dense Immutable Double MoneyPerEnergy Vector.
|
Dense(double[] values,
MoneyPerEnergyUnit unit)
Construct a new Dense Immutable Double MoneyPerEnergy Vector.
|
Dense(double[] values,
MoneyPerLengthUnit unit)
Construct a new Dense Immutable Double MoneyPerLength Vector.
|
Dense(double[] values,
MoneyPerLengthUnit unit)
Construct a new Dense Immutable Double MoneyPerLength Vector.
|
Dense(double[] values,
MoneyPerMassUnit unit)
Construct a new Dense Immutable Double MoneyPerMass Vector.
|
Dense(double[] values,
MoneyPerMassUnit unit)
Construct a new Dense Immutable Double MoneyPerMass Vector.
|
Dense(double[] values,
MoneyPerTimeUnit unit)
Construct a new Dense Immutable Double MoneyPerTime Vector.
|
Dense(double[] values,
MoneyPerTimeUnit unit)
Construct a new Dense Immutable Double MoneyPerTime Vector.
|
Dense(double[] values,
MoneyPerVolumeUnit unit)
Construct a new Dense Immutable Double MoneyPerVolume Vector.
|
Dense(double[] values,
MoneyPerVolumeUnit unit)
Construct a new Dense Immutable Double MoneyPerVolume Vector.
|
Dense(double[] values,
MoneyUnit unit)
Construct a new Dense Immutable Double Money Vector.
|
Dense(double[] values,
MoneyUnit unit)
Construct a new Dense Immutable Double Money Vector.
|
Dense(double[] values,
PowerUnit unit)
Construct a new Dense Immutable Double Power Vector.
|
Dense(double[] values,
PowerUnit unit)
Construct a new Dense Immutable Double Power Vector.
|
Dense(double[] values,
PressureUnit unit)
Construct a new Dense Immutable Double Pressure Vector.
|
Dense(double[] values,
PressureUnit unit)
Construct a new Dense Immutable Double Pressure Vector.
|
Dense(double[] values,
SpeedUnit unit)
Construct a new Dense Immutable Double Speed Vector.
|
Dense(double[] values,
SpeedUnit unit)
Construct a new Dense Immutable Double Speed Vector.
|
Dense(double[] values,
TemperatureUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
TemperatureUnit unit)
Construct a new Dense Immutable Double Temperature Vector.
|
Dense(double[] values,
TemperatureUnit unit)
Construct a new Absolute Dense Mutable TemperatureVector.
|
Dense(double[] values,
TemperatureUnit unit)
Construct a new Dense Immutable Double Temperature Vector.
|
Dense(double[] values,
TimeUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
TimeUnit unit)
Construct a new Dense Immutable Double Time Vector.
|
Dense(double[] values,
TimeUnit unit)
Construct a new Absolute Dense Mutable TimeVector.
|
Dense(double[] values,
TimeUnit unit)
Construct a new Dense Immutable Double Time Vector.
|
Dense(double[] values,
TorqueUnit unit)
Construct a new Dense Immutable Double Torque Vector.
|
Dense(double[] values,
TorqueUnit unit)
Construct a new Dense Immutable Double Torque Vector.
|
Dense(double[] values,
U unit)
Construct a new Absolute Dense Mutable DoubleVector.
|
Dense(double[] values,
U unit)
Construct a new Relative Dense Mutable DoubleVector.
|
Dense(double[] values,
U unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(double[] values,
U unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(double[] values,
VolumeUnit unit)
Construct a new Dense Immutable Double Volume Vector.
|
Dense(double[] values,
VolumeUnit unit)
Construct a new Dense Immutable Double Volume Vector.
|
Dense(DoubleScalar.Abs<U>[] values)
Construct a new Absolute Dense Mutable DoubleVector.
|
Dense(DoubleScalar.Abs<U>[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(DoubleScalar.Rel<U>[] values)
Construct a new Relative Dense Mutable DoubleVector.
|
Dense(DoubleScalar.Rel<U>[] values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(ElectricalCharge[] values)
Construct a new Relative Dense Immutable ElectricalCharge Vector.
|
Dense(ElectricalCharge[] values)
Construct a new Relative Dense Immutable ElectricalCharge Vector.
|
Dense(ElectricalCurrent[] values)
Construct a new Relative Dense Immutable ElectricalCurrent Vector.
|
Dense(ElectricalCurrent[] values)
Construct a new Relative Dense Immutable ElectricalCurrent Vector.
|
Dense(ElectricalPotential[] values)
Construct a new Relative Dense Immutable ElectricalPotential Vector.
|
Dense(ElectricalPotential[] values)
Construct a new Relative Dense Immutable ElectricalPotential Vector.
|
Dense(ElectricalResistance[] values)
Construct a new Relative Dense Immutable ElectricalResistance Vector.
|
Dense(ElectricalResistance[] values)
Construct a new Relative Dense Immutable ElectricalResistance Vector.
|
Dense(Energy[] values)
Construct a new Relative Dense Immutable Energy Vector.
|
Dense(Energy[] values)
Construct a new Relative Dense Immutable Energy Vector.
|
Dense(FlowMass[] values)
Construct a new Relative Dense Immutable FlowMass Vector.
|
Dense(FlowMass[] values)
Construct a new Relative Dense Immutable FlowMass Vector.
|
Dense(FlowVolume[] values)
Construct a new Relative Dense Immutable FlowVolume Vector.
|
Dense(FlowVolume[] values)
Construct a new Relative Dense Immutable FlowVolume Vector.
|
Dense(Force[] values)
Construct a new Relative Dense Immutable Force Vector.
|
Dense(Force[] values)
Construct a new Relative Dense Immutable Force Vector.
|
Dense(Frequency[] values)
Construct a new Relative Dense Immutable Frequency Vector.
|
Dense(Frequency[] values)
Construct a new Relative Dense Immutable Frequency Vector.
|
Dense(Length.Abs[] values)
Construct a new Absolute Dense Mutable LengthVector.
|
Dense(Length.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(Length.Rel[] values)
Construct a new Relative Dense Immutable Length Vector.
|
Dense(Length.Rel[] values)
Construct a new Relative Dense Immutable Length Vector.
|
Dense(LinearDensity[] values)
Construct a new Relative Dense Immutable LinearDensity Vector.
|
Dense(LinearDensity[] values)
Construct a new Relative Dense Immutable LinearDensity Vector.
|
Dense(List<Double> values,
AccelerationUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AccelerationUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AnglePlaneUnit unit)
Construct a new Absolute Dense Mutable AnglePlaneVector.
|
Dense(List<Double> values,
AnglePlaneUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AnglePlaneUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AnglePlaneUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AngleSlopeUnit unit)
Construct a new Absolute Dense Mutable AngleSlopeVector.
|
Dense(List<Double> values,
AngleSlopeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AngleSlopeUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AngleSlopeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AngleSolidUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AngleSolidUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AreaUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
AreaUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
DensityUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
DensityUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
DimensionlessUnit unit)
Construct a new Absolute Dense Mutable DimensionlessVector.
|
Dense(List<Double> values,
DimensionlessUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
DimensionlessUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
DimensionlessUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalChargeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalChargeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalCurrentUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalCurrentUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalPotentialUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalPotentialUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalResistanceUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ElectricalResistanceUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
EnergyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
EnergyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FlowMassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FlowMassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FlowVolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FlowVolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ForceUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
ForceUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FrequencyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
FrequencyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
LengthUnit unit)
Construct a new Absolute Dense Mutable LengthVector.
|
Dense(List<Double> values,
LengthUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
LengthUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
LengthUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
LinearDensityUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
LinearDensityUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerAreaUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerAreaUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerEnergyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerEnergyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerLengthUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerLengthUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerMassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerMassUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerTimeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerTimeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerVolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyPerVolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
MoneyUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
PowerUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
PowerUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
PressureUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
PressureUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
SpeedUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
SpeedUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TemperatureUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TemperatureUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TemperatureUnit unit)
Construct a new Absolute Dense Mutable TemperatureVector.
|
Dense(List<Double> values,
TemperatureUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TimeUnit unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TimeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TimeUnit unit)
Construct a new Absolute Dense Mutable TimeVector.
|
Dense(List<Double> values,
TimeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TorqueUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
TorqueUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
U unit)
Construct a new Absolute Dense Mutable DoubleVector.
|
Dense(List<Double> values,
U unit)
Construct a new Relative Dense Mutable DoubleVector.
|
Dense(List<Double> values,
U unit)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<Double> values,
U unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
VolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<Double> values,
VolumeUnit unit)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<AnglePlaneUnit>> values)
Construct a new Absolute Dense Mutable AnglePlaneVector.
|
Dense(List<DoubleScalar.Abs<AnglePlaneUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<AngleSlopeUnit>> values)
Construct a new Absolute Dense Mutable AngleSlopeVector.
|
Dense(List<DoubleScalar.Abs<AngleSlopeUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<DimensionlessUnit>> values)
Construct a new Absolute Dense Mutable DimensionlessVector.
|
Dense(List<DoubleScalar.Abs<DimensionlessUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<LengthUnit>> values)
Construct a new Absolute Dense Mutable LengthVector.
|
Dense(List<DoubleScalar.Abs<LengthUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<TemperatureUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<TemperatureUnit>> values)
Construct a new Absolute Dense Mutable TemperatureVector.
|
Dense(List<DoubleScalar.Abs<TimeUnit>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<TimeUnit>> values)
Construct a new Absolute Dense Mutable TimeVector.
|
Dense(List<DoubleScalar.Abs<U>> values)
Construct a new Absolute Dense Mutable DoubleVector.
|
Dense(List<DoubleScalar.Abs<U>> values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AccelerationUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AccelerationUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AnglePlaneUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AnglePlaneUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AngleSlopeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AngleSlopeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AngleSolidUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AngleSolidUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AreaUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<AreaUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<DensityUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<DensityUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<DimensionlessUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<DimensionlessUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalChargeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalChargeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalCurrentUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalCurrentUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalPotentialUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalPotentialUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalResistanceUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ElectricalResistanceUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<EnergyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<EnergyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FlowMassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FlowMassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FlowVolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FlowVolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ForceUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<ForceUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FrequencyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<FrequencyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<LengthUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<LengthUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<LinearDensityUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<LinearDensityUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerAreaUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerAreaUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerEnergyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerEnergyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerLengthUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerLengthUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerMassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerMassUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerTimeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerTimeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerVolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyPerVolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<MoneyUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<PowerUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<PowerUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<PressureUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<PressureUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<SpeedUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<SpeedUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TemperatureUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TemperatureUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TimeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TimeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TorqueUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<TorqueUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<U>> values)
Construct a new Relative Dense Mutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<U>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<VolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(List<DoubleScalar.Rel<VolumeUnit>> values)
Construct a new Relative Dense Immutable DoubleVector.
|
Dense(Mass[] values)
Construct a new Relative Dense Immutable Mass Vector.
|
Dense(Mass[] values)
Construct a new Relative Dense Immutable Mass Vector.
|
Dense(Money[] values)
Construct a new Relative Dense Immutable Money Vector.
|
Dense(Money[] values)
Construct a new Relative Dense Immutable Money Vector.
|
Dense(MoneyPerArea[] values)
Construct a new Relative Dense Immutable MoneyPerArea Vector.
|
Dense(MoneyPerArea[] values)
Construct a new Relative Dense Immutable MoneyPerArea Vector.
|
Dense(MoneyPerEnergy[] values)
Construct a new Relative Dense Immutable MoneyPerEnergy Vector.
|
Dense(MoneyPerEnergy[] values)
Construct a new Relative Dense Immutable MoneyPerEnergy Vector.
|
Dense(MoneyPerLength[] values)
Construct a new Relative Dense Immutable MoneyPerLength Vector.
|
Dense(MoneyPerLength[] values)
Construct a new Relative Dense Immutable MoneyPerLength Vector.
|
Dense(MoneyPerMass[] values)
Construct a new Relative Dense Immutable MoneyPerMass Vector.
|
Dense(MoneyPerMass[] values)
Construct a new Relative Dense Immutable MoneyPerMass Vector.
|
Dense(MoneyPerTime[] values)
Construct a new Relative Dense Immutable MoneyPerTime Vector.
|
Dense(MoneyPerTime[] values)
Construct a new Relative Dense Immutable MoneyPerTime Vector.
|
Dense(MoneyPerVolume[] values)
Construct a new Relative Dense Immutable MoneyPerVolume Vector.
|
Dense(MoneyPerVolume[] values)
Construct a new Relative Dense Immutable MoneyPerVolume Vector.
|
Dense(Power[] values)
Construct a new Relative Dense Immutable Power Vector.
|
Dense(Power[] values)
Construct a new Relative Dense Immutable Power Vector.
|
Dense(Pressure[] values)
Construct a new Relative Dense Immutable Pressure Vector.
|
Dense(Pressure[] values)
Construct a new Relative Dense Immutable Pressure Vector.
|
Dense(Speed[] values)
Construct a new Relative Dense Immutable Speed Vector.
|
Dense(Speed[] values)
Construct a new Relative Dense Immutable Speed Vector.
|
Dense(Temperature.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(Temperature.Abs[] values)
Construct a new Absolute Dense Mutable TemperatureVector.
|
Dense(Temperature.Rel[] values)
Construct a new Relative Dense Immutable Temperature Vector.
|
Dense(Temperature.Rel[] values)
Construct a new Relative Dense Immutable Temperature Vector.
|
Dense(Time.Abs[] values)
Construct a new Absolute Dense Immutable DoubleVector.
|
Dense(Time.Abs[] values)
Construct a new Absolute Dense Mutable TimeVector.
|
Dense(Time.Rel[] values)
Construct a new Relative Dense Immutable Time Vector.
|
Dense(Time.Rel[] values)
Construct a new Relative Dense Immutable Time Vector.
|
Dense(Torque[] values)
Construct a new Relative Dense Immutable Torque Vector.
|
Dense(Torque[] values)
Construct a new Relative Dense Immutable Torque Vector.
|
Dense(Volume[] values)
Construct a new Relative Dense Immutable Volume Vector.
|
Dense(Volume[] values)
Construct a new Relative Dense Immutable Volume Vector.
|
Sparse(Acceleration[] values)
Construct a new Relative Sparse Immutable Acceleration Vector.
|
Sparse(Acceleration[] values)
Construct a new Relative Sparse Immutable Acceleration Vector.
|
Sparse(AnglePlane.Abs[] values)
Construct a new Absolute Sparse Mutable AnglePlaneVector.
|
Sparse(AnglePlane.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(AnglePlane.Rel[] values)
Construct a new Relative Sparse Immutable AnglePlane Vector.
|
Sparse(AnglePlane.Rel[] values)
Construct a new Relative Sparse Immutable AnglePlane Vector.
|
Sparse(AngleSlope.Abs[] values)
Construct a new Absolute Sparse Mutable AngleSlopeVector.
|
Sparse(AngleSlope.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(AngleSlope.Rel[] values)
Construct a new Relative Sparse Immutable AngleSlope Vector.
|
Sparse(AngleSlope.Rel[] values)
Construct a new Relative Sparse Immutable AngleSlope Vector.
|
Sparse(AngleSolid[] values)
Construct a new Relative Sparse Immutable AngleSolid Vector.
|
Sparse(AngleSolid[] values)
Construct a new Relative Sparse Immutable AngleSolid Vector.
|
Sparse(Area[] values)
Construct a new Relative Sparse Immutable Area Vector.
|
Sparse(Area[] values)
Construct a new Relative Sparse Immutable Area Vector.
|
Sparse(Density[] values)
Construct a new Relative Sparse Immutable Density Vector.
|
Sparse(Density[] values)
Construct a new Relative Sparse Immutable Density Vector.
|
Sparse(Dimensionless.Abs[] values)
Construct a new Absolute Sparse Mutable DimensionlessVector.
|
Sparse(Dimensionless.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(Dimensionless.Rel[] values)
Construct a new Relative Sparse Immutable Dimensionless Vector.
|
Sparse(Dimensionless.Rel[] values)
Construct a new Relative Sparse Immutable Dimensionless Vector.
|
Sparse(double[] values,
AccelerationUnit unit)
Construct a new Sparse Immutable Double Acceleration Vector.
|
Sparse(double[] values,
AccelerationUnit unit)
Construct a new Sparse Immutable Double Acceleration Vector.
|
Sparse(double[] values,
AnglePlaneUnit unit)
Construct a new Absolute Sparse Mutable AnglePlaneVector.
|
Sparse(double[] values,
AnglePlaneUnit unit)
Construct a new Sparse Immutable Double AnglePlane Vector.
|
Sparse(double[] values,
AnglePlaneUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
AnglePlaneUnit unit)
Construct a new Sparse Immutable Double AnglePlane Vector.
|
Sparse(double[] values,
AngleSlopeUnit unit)
Construct a new Absolute Sparse Mutable AngleSlopeVector.
|
Sparse(double[] values,
AngleSlopeUnit unit)
Construct a new Sparse Immutable Double AngleSlope Vector.
|
Sparse(double[] values,
AngleSlopeUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
AngleSlopeUnit unit)
Construct a new Sparse Immutable Double AngleSlope Vector.
|
Sparse(double[] values,
AngleSolidUnit unit)
Construct a new Sparse Immutable Double AngleSolid Vector.
|
Sparse(double[] values,
AngleSolidUnit unit)
Construct a new Sparse Immutable Double AngleSolid Vector.
|
Sparse(double[] values,
AreaUnit unit)
Construct a new Sparse Immutable Double Area Vector.
|
Sparse(double[] values,
AreaUnit unit)
Construct a new Sparse Immutable Double Area Vector.
|
Sparse(double[] values,
DensityUnit unit)
Construct a new Sparse Immutable Double Density Vector.
|
Sparse(double[] values,
DensityUnit unit)
Construct a new Sparse Immutable Double Density Vector.
|
Sparse(double[] values,
DimensionlessUnit unit)
Construct a new Absolute Sparse Mutable DimensionlessVector.
|
Sparse(double[] values,
DimensionlessUnit unit)
Construct a new Sparse Immutable Double Dimensionless Vector.
|
Sparse(double[] values,
DimensionlessUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
DimensionlessUnit unit)
Construct a new Sparse Immutable Double Dimensionless Vector.
|
Sparse(double[] values,
ElectricalChargeUnit unit)
Construct a new Sparse Immutable Double ElectricalCharge Vector.
|
Sparse(double[] values,
ElectricalChargeUnit unit)
Construct a new Sparse Immutable Double ElectricalCharge Vector.
|
Sparse(double[] values,
ElectricalCurrentUnit unit)
Construct a new Sparse Immutable Double ElectricalCurrent Vector.
|
Sparse(double[] values,
ElectricalCurrentUnit unit)
Construct a new Sparse Immutable Double ElectricalCurrent Vector.
|
Sparse(double[] values,
ElectricalPotentialUnit unit)
Construct a new Sparse Immutable Double ElectricalPotential Vector.
|
Sparse(double[] values,
ElectricalPotentialUnit unit)
Construct a new Sparse Immutable Double ElectricalPotential Vector.
|
Sparse(double[] values,
ElectricalResistanceUnit unit)
Construct a new Sparse Immutable Double ElectricalResistance Vector.
|
Sparse(double[] values,
ElectricalResistanceUnit unit)
Construct a new Sparse Immutable Double ElectricalResistance Vector.
|
Sparse(double[] values,
EnergyUnit unit)
Construct a new Sparse Immutable Double Energy Vector.
|
Sparse(double[] values,
EnergyUnit unit)
Construct a new Sparse Immutable Double Energy Vector.
|
Sparse(double[] values,
FlowMassUnit unit)
Construct a new Sparse Immutable Double FlowMass Vector.
|
Sparse(double[] values,
FlowMassUnit unit)
Construct a new Sparse Immutable Double FlowMass Vector.
|
Sparse(double[] values,
FlowVolumeUnit unit)
Construct a new Sparse Immutable Double FlowVolume Vector.
|
Sparse(double[] values,
FlowVolumeUnit unit)
Construct a new Sparse Immutable Double FlowVolume Vector.
|
Sparse(double[] values,
ForceUnit unit)
Construct a new Sparse Immutable Double Force Vector.
|
Sparse(double[] values,
ForceUnit unit)
Construct a new Sparse Immutable Double Force Vector.
|
Sparse(double[] values,
FrequencyUnit unit)
Construct a new Sparse Immutable Double Frequency Vector.
|
Sparse(double[] values,
FrequencyUnit unit)
Construct a new Sparse Immutable Double Frequency Vector.
|
Sparse(double[] values,
LengthUnit unit)
Construct a new Absolute Sparse Mutable LengthVector.
|
Sparse(double[] values,
LengthUnit unit)
Construct a new Sparse Immutable Double Length Vector.
|
Sparse(double[] values,
LengthUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
LengthUnit unit)
Construct a new Sparse Immutable Double Length Vector.
|
Sparse(double[] values,
LinearDensityUnit unit)
Construct a new Sparse Immutable Double LinearDensity Vector.
|
Sparse(double[] values,
LinearDensityUnit unit)
Construct a new Sparse Immutable Double LinearDensity Vector.
|
Sparse(double[] values,
MassUnit unit)
Construct a new Sparse Immutable Double Mass Vector.
|
Sparse(double[] values,
MassUnit unit)
Construct a new Sparse Immutable Double Mass Vector.
|
Sparse(double[] values,
MoneyPerAreaUnit unit)
Construct a new Sparse Immutable Double MoneyPerArea Vector.
|
Sparse(double[] values,
MoneyPerAreaUnit unit)
Construct a new Sparse Immutable Double MoneyPerArea Vector.
|
Sparse(double[] values,
MoneyPerEnergyUnit unit)
Construct a new Sparse Immutable Double MoneyPerEnergy Vector.
|
Sparse(double[] values,
MoneyPerEnergyUnit unit)
Construct a new Sparse Immutable Double MoneyPerEnergy Vector.
|
Sparse(double[] values,
MoneyPerLengthUnit unit)
Construct a new Sparse Immutable Double MoneyPerLength Vector.
|
Sparse(double[] values,
MoneyPerLengthUnit unit)
Construct a new Sparse Immutable Double MoneyPerLength Vector.
|
Sparse(double[] values,
MoneyPerMassUnit unit)
Construct a new Sparse Immutable Double MoneyPerMass Vector.
|
Sparse(double[] values,
MoneyPerMassUnit unit)
Construct a new Sparse Immutable Double MoneyPerMass Vector.
|
Sparse(double[] values,
MoneyPerTimeUnit unit)
Construct a new Sparse Immutable Double MoneyPerTime Vector.
|
Sparse(double[] values,
MoneyPerTimeUnit unit)
Construct a new Sparse Immutable Double MoneyPerTime Vector.
|
Sparse(double[] values,
MoneyPerVolumeUnit unit)
Construct a new Sparse Immutable Double MoneyPerVolume Vector.
|
Sparse(double[] values,
MoneyPerVolumeUnit unit)
Construct a new Sparse Immutable Double MoneyPerVolume Vector.
|
Sparse(double[] values,
MoneyUnit unit)
Construct a new Sparse Immutable Double Money Vector.
|
Sparse(double[] values,
MoneyUnit unit)
Construct a new Sparse Immutable Double Money Vector.
|
Sparse(double[] values,
PowerUnit unit)
Construct a new Sparse Immutable Double Power Vector.
|
Sparse(double[] values,
PowerUnit unit)
Construct a new Sparse Immutable Double Power Vector.
|
Sparse(double[] values,
PressureUnit unit)
Construct a new Sparse Immutable Double Pressure Vector.
|
Sparse(double[] values,
PressureUnit unit)
Construct a new Sparse Immutable Double Pressure Vector.
|
Sparse(double[] values,
SpeedUnit unit)
Construct a new Sparse Immutable Double Speed Vector.
|
Sparse(double[] values,
SpeedUnit unit)
Construct a new Sparse Immutable Double Speed Vector.
|
Sparse(double[] values,
TemperatureUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
TemperatureUnit unit)
Construct a new Sparse Immutable Double Temperature Vector.
|
Sparse(double[] values,
TemperatureUnit unit)
Construct a new Absolute Sparse Mutable TemperatureVector.
|
Sparse(double[] values,
TemperatureUnit unit)
Construct a new Sparse Immutable Double Temperature Vector.
|
Sparse(double[] values,
TimeUnit unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
TimeUnit unit)
Construct a new Sparse Immutable Double Time Vector.
|
Sparse(double[] values,
TimeUnit unit)
Construct a new Absolute Sparse Mutable TimeVector.
|
Sparse(double[] values,
TimeUnit unit)
Construct a new Sparse Immutable Double Time Vector.
|
Sparse(double[] values,
TorqueUnit unit)
Construct a new Sparse Immutable Double Torque Vector.
|
Sparse(double[] values,
TorqueUnit unit)
Construct a new Sparse Immutable Double Torque Vector.
|
Sparse(double[] values,
U unit)
Construct a new Absolute Sparse Mutable DoubleVector.
|
Sparse(double[] values,
U unit)
Construct a new Relative Sparse Mutable DoubleVector.
|
Sparse(double[] values,
U unit)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(double[] values,
U unit)
Construct a new Relative Sparse Immutable DoubleVector.
|
Sparse(double[] values,
VolumeUnit unit)
Construct a new Sparse Immutable Double Volume Vector.
|
Sparse(double[] values,
VolumeUnit unit)
Construct a new Sparse Immutable Double Volume Vector.
|
Sparse(DoubleScalar.Abs<U>[] values)
Construct a new Absolute Sparse Mutable DoubleVector.
|
Sparse(DoubleScalar.Abs<U>[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(DoubleScalar.Rel<U>[] values)
Construct a new Relative Sparse Mutable DoubleVector.
|
Sparse(DoubleScalar.Rel<U>[] values)
Construct a new Relative Sparse Immutable DoubleVector.
|
Sparse(ElectricalCharge[] values)
Construct a new Relative Sparse Immutable ElectricalCharge Vector.
|
Sparse(ElectricalCharge[] values)
Construct a new Relative Sparse Immutable ElectricalCharge Vector.
|
Sparse(ElectricalCurrent[] values)
Construct a new Relative Sparse Immutable ElectricalCurrent Vector.
|
Sparse(ElectricalCurrent[] values)
Construct a new Relative Sparse Immutable ElectricalCurrent Vector.
|
Sparse(ElectricalPotential[] values)
Construct a new Relative Sparse Immutable ElectricalPotential Vector.
|
Sparse(ElectricalPotential[] values)
Construct a new Relative Sparse Immutable ElectricalPotential Vector.
|
Sparse(ElectricalResistance[] values)
Construct a new Relative Sparse Immutable ElectricalResistance Vector.
|
Sparse(ElectricalResistance[] values)
Construct a new Relative Sparse Immutable ElectricalResistance Vector.
|
Sparse(Energy[] values)
Construct a new Relative Sparse Immutable Energy Vector.
|
Sparse(Energy[] values)
Construct a new Relative Sparse Immutable Energy Vector.
|
Sparse(FlowMass[] values)
Construct a new Relative Sparse Immutable FlowMass Vector.
|
Sparse(FlowMass[] values)
Construct a new Relative Sparse Immutable FlowMass Vector.
|
Sparse(FlowVolume[] values)
Construct a new Relative Sparse Immutable FlowVolume Vector.
|
Sparse(FlowVolume[] values)
Construct a new Relative Sparse Immutable FlowVolume Vector.
|
Sparse(Force[] values)
Construct a new Relative Sparse Immutable Force Vector.
|
Sparse(Force[] values)
Construct a new Relative Sparse Immutable Force Vector.
|
Sparse(Frequency[] values)
Construct a new Relative Sparse Immutable Frequency Vector.
|
Sparse(Frequency[] values)
Construct a new Relative Sparse Immutable Frequency Vector.
|
Sparse(Length.Abs[] values)
Construct a new Absolute Sparse Mutable LengthVector.
|
Sparse(Length.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(Length.Rel[] values)
Construct a new Relative Sparse Immutable Length Vector.
|
Sparse(Length.Rel[] values)
Construct a new Relative Sparse Immutable Length Vector.
|
Sparse(LinearDensity[] values)
Construct a new Relative Sparse Immutable LinearDensity Vector.
|
Sparse(LinearDensity[] values)
Construct a new Relative Sparse Immutable LinearDensity Vector.
|
Sparse(Mass[] values)
Construct a new Relative Sparse Immutable Mass Vector.
|
Sparse(Mass[] values)
Construct a new Relative Sparse Immutable Mass Vector.
|
Sparse(Money[] values)
Construct a new Relative Sparse Immutable Money Vector.
|
Sparse(Money[] values)
Construct a new Relative Sparse Immutable Money Vector.
|
Sparse(MoneyPerArea[] values)
Construct a new Relative Sparse Immutable MoneyPerArea Vector.
|
Sparse(MoneyPerArea[] values)
Construct a new Relative Sparse Immutable MoneyPerArea Vector.
|
Sparse(MoneyPerEnergy[] values)
Construct a new Relative Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(MoneyPerEnergy[] values)
Construct a new Relative Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(MoneyPerLength[] values)
Construct a new Relative Sparse Immutable MoneyPerLength Vector.
|
Sparse(MoneyPerLength[] values)
Construct a new Relative Sparse Immutable MoneyPerLength Vector.
|
Sparse(MoneyPerMass[] values)
Construct a new Relative Sparse Immutable MoneyPerMass Vector.
|
Sparse(MoneyPerMass[] values)
Construct a new Relative Sparse Immutable MoneyPerMass Vector.
|
Sparse(MoneyPerTime[] values)
Construct a new Relative Sparse Immutable MoneyPerTime Vector.
|
Sparse(MoneyPerTime[] values)
Construct a new Relative Sparse Immutable MoneyPerTime Vector.
|
Sparse(MoneyPerVolume[] values)
Construct a new Relative Sparse Immutable MoneyPerVolume Vector.
|
Sparse(MoneyPerVolume[] values)
Construct a new Relative Sparse Immutable MoneyPerVolume Vector.
|
Sparse(Power[] values)
Construct a new Relative Sparse Immutable Power Vector.
|
Sparse(Power[] values)
Construct a new Relative Sparse Immutable Power Vector.
|
Sparse(Pressure[] values)
Construct a new Relative Sparse Immutable Pressure Vector.
|
Sparse(Pressure[] values)
Construct a new Relative Sparse Immutable Pressure Vector.
|
Sparse(SortedMap<Integer,Double> values,
AccelerationUnit unit,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,Double> values,
AccelerationUnit unit,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,Double> values,
AnglePlaneUnit unit,
int angleplane)
Construct a new Absolute Sparse Mutable AnglePlaneVector.
|
Sparse(SortedMap<Integer,Double> values,
AnglePlaneUnit unit,
int angleplane)
Construct a new Sparse Immutable AnglePlane Vector.
|
Sparse(SortedMap<Integer,Double> values,
AnglePlaneUnit unit,
int angleplane)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
AnglePlaneUnit unit,
int angleplane)
Construct a new Sparse Immutable AnglePlane Vector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSlopeUnit unit,
int angleslope)
Construct a new Absolute Sparse Mutable AngleSlopeVector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSlopeUnit unit,
int angleslope)
Construct a new Sparse Immutable AngleSlope Vector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSlopeUnit unit,
int angleslope)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSlopeUnit unit,
int angleslope)
Construct a new Sparse Immutable AngleSlope Vector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSolidUnit unit,
int length)
Construct a new Sparse Immutable AngleSolid Vector.
|
Sparse(SortedMap<Integer,Double> values,
AngleSolidUnit unit,
int length)
Construct a new Sparse Immutable AngleSolid Vector.
|
Sparse(SortedMap<Integer,Double> values,
AreaUnit unit,
int length)
Construct a new Sparse Immutable Area Vector.
|
Sparse(SortedMap<Integer,Double> values,
AreaUnit unit,
int length)
Construct a new Sparse Immutable Area Vector.
|
Sparse(SortedMap<Integer,Double> values,
DensityUnit unit,
int length)
Construct a new Sparse Immutable Density Vector.
|
Sparse(SortedMap<Integer,Double> values,
DensityUnit unit,
int length)
Construct a new Sparse Immutable Density Vector.
|
Sparse(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int dimensionless)
Construct a new Absolute Sparse Mutable DimensionlessVector.
|
Sparse(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int dimensionless)
Construct a new Sparse Immutable Dimensionless Vector.
|
Sparse(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int dimensionless)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
DimensionlessUnit unit,
int dimensionless)
Construct a new Sparse Immutable Dimensionless Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalChargeUnit unit,
int length)
Construct a new Sparse Immutable ElectricalCharge Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalChargeUnit unit,
int length)
Construct a new Sparse Immutable ElectricalCharge Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalCurrentUnit unit,
int length)
Construct a new Sparse Immutable ElectricalCurrent Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalCurrentUnit unit,
int length)
Construct a new Sparse Immutable ElectricalCurrent Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalPotentialUnit unit,
int length)
Construct a new Sparse Immutable ElectricalPotential Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalPotentialUnit unit,
int length)
Construct a new Sparse Immutable ElectricalPotential Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalResistanceUnit unit,
int length)
Construct a new Sparse Immutable ElectricalResistance Vector.
|
Sparse(SortedMap<Integer,Double> values,
ElectricalResistanceUnit unit,
int length)
Construct a new Sparse Immutable ElectricalResistance Vector.
|
Sparse(SortedMap<Integer,Double> values,
EnergyUnit unit,
int length)
Construct a new Sparse Immutable Energy Vector.
|
Sparse(SortedMap<Integer,Double> values,
EnergyUnit unit,
int length)
Construct a new Sparse Immutable Energy Vector.
|
Sparse(SortedMap<Integer,Double> values,
FlowMassUnit unit,
int length)
Construct a new Sparse Immutable FlowMass Vector.
|
Sparse(SortedMap<Integer,Double> values,
FlowMassUnit unit,
int length)
Construct a new Sparse Immutable FlowMass Vector.
|
Sparse(SortedMap<Integer,Double> values,
FlowVolumeUnit unit,
int length)
Construct a new Sparse Immutable FlowVolume Vector.
|
Sparse(SortedMap<Integer,Double> values,
FlowVolumeUnit unit,
int length)
Construct a new Sparse Immutable FlowVolume Vector.
|
Sparse(SortedMap<Integer,Double> values,
ForceUnit unit,
int length)
Construct a new Sparse Immutable Force Vector.
|
Sparse(SortedMap<Integer,Double> values,
ForceUnit unit,
int length)
Construct a new Sparse Immutable Force Vector.
|
Sparse(SortedMap<Integer,Double> values,
FrequencyUnit unit,
int length)
Construct a new Sparse Immutable Frequency Vector.
|
Sparse(SortedMap<Integer,Double> values,
FrequencyUnit unit,
int length)
Construct a new Sparse Immutable Frequency Vector.
|
Sparse(SortedMap<Integer,Double> values,
LengthUnit unit,
int length)
Construct a new Absolute Sparse Mutable LengthVector.
|
Sparse(SortedMap<Integer,Double> values,
LengthUnit unit,
int length)
Construct a new Sparse Immutable Length Vector.
|
Sparse(SortedMap<Integer,Double> values,
LengthUnit unit,
int length)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
LengthUnit unit,
int length)
Construct a new Sparse Immutable Length Vector.
|
Sparse(SortedMap<Integer,Double> values,
LinearDensityUnit unit,
int length)
Construct a new Sparse Immutable LinearDensity Vector.
|
Sparse(SortedMap<Integer,Double> values,
LinearDensityUnit unit,
int length)
Construct a new Sparse Immutable LinearDensity Vector.
|
Sparse(SortedMap<Integer,Double> values,
MassUnit unit,
int length)
Construct a new Sparse Immutable Mass Vector.
|
Sparse(SortedMap<Integer,Double> values,
MassUnit unit,
int length)
Construct a new Sparse Immutable Mass Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerAreaUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerArea Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerAreaUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerArea Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerEnergyUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerEnergyUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerLengthUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerLength Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerLengthUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerLength Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerMassUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerMass Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerMassUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerMass Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerTimeUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerTime Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerTimeUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerTime Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerVolumeUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerVolume Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyPerVolumeUnit unit,
int length)
Construct a new Sparse Immutable MoneyPerVolume Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyUnit unit,
int length)
Construct a new Sparse Immutable Money Vector.
|
Sparse(SortedMap<Integer,Double> values,
MoneyUnit unit,
int length)
Construct a new Sparse Immutable Money Vector.
|
Sparse(SortedMap<Integer,Double> values,
PowerUnit unit,
int length)
Construct a new Sparse Immutable Power Vector.
|
Sparse(SortedMap<Integer,Double> values,
PowerUnit unit,
int length)
Construct a new Sparse Immutable Power Vector.
|
Sparse(SortedMap<Integer,Double> values,
PressureUnit unit,
int length)
Construct a new Sparse Immutable Pressure Vector.
|
Sparse(SortedMap<Integer,Double> values,
PressureUnit unit,
int length)
Construct a new Sparse Immutable Pressure Vector.
|
Sparse(SortedMap<Integer,Double> values,
SpeedUnit unit,
int length)
Construct a new Sparse Immutable Speed Vector.
|
Sparse(SortedMap<Integer,Double> values,
SpeedUnit unit,
int length)
Construct a new Sparse Immutable Speed Vector.
|
Sparse(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int temperature)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int temperature)
Construct a new Sparse Immutable Temperature Vector.
|
Sparse(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int temperature)
Construct a new Absolute Sparse Mutable TemperatureVector.
|
Sparse(SortedMap<Integer,Double> values,
TemperatureUnit unit,
int temperature)
Construct a new Sparse Immutable Temperature Vector.
|
Sparse(SortedMap<Integer,Double> values,
TimeUnit unit,
int time)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
TimeUnit unit,
int time)
Construct a new Sparse Immutable Time Vector.
|
Sparse(SortedMap<Integer,Double> values,
TimeUnit unit,
int time)
Construct a new Absolute Sparse Mutable TimeVector.
|
Sparse(SortedMap<Integer,Double> values,
TimeUnit unit,
int time)
Construct a new Sparse Immutable Time Vector.
|
Sparse(SortedMap<Integer,Double> values,
TorqueUnit unit,
int length)
Construct a new Sparse Immutable Torque Vector.
|
Sparse(SortedMap<Integer,Double> values,
TorqueUnit unit,
int length)
Construct a new Sparse Immutable Torque Vector.
|
Sparse(SortedMap<Integer,Double> values,
U unit,
int length)
Construct a new Absolute Sparse Mutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
U unit,
int length)
Construct a new Relative Sparse Mutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
U unit,
int length)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
U unit,
int length)
Construct a new Relative Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,Double> values,
VolumeUnit unit,
int length)
Construct a new Sparse Immutable Volume Vector.
|
Sparse(SortedMap<Integer,Double> values,
VolumeUnit unit,
int length)
Construct a new Sparse Immutable Volume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<AnglePlaneUnit>> values,
int angleplane)
Construct a new Absolute Sparse Mutable AnglePlaneVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<AnglePlaneUnit>> values,
int angleplane)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<AngleSlopeUnit>> values,
int angleslope)
Construct a new Absolute Sparse Mutable AngleSlopeVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<AngleSlopeUnit>> values,
int angleslope)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<DimensionlessUnit>> values,
int dimensionless)
Construct a new Absolute Sparse Mutable DimensionlessVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<DimensionlessUnit>> values,
int dimensionless)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<LengthUnit>> values,
int length)
Construct a new Absolute Sparse Mutable LengthVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<LengthUnit>> values,
int length)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<TemperatureUnit>> values,
int temperature)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<TemperatureUnit>> values,
int temperature)
Construct a new Absolute Sparse Mutable TemperatureVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<TimeUnit>> values,
int time)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<TimeUnit>> values,
int time)
Construct a new Absolute Sparse Mutable TimeVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<U>> values,
int length)
Construct a new Absolute Sparse Mutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Abs<U>> values,
int length)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AccelerationUnit>> values,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AccelerationUnit>> values,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AnglePlaneUnit>> values,
int angleplane)
Construct a new Sparse Immutable AnglePlane Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AnglePlaneUnit>> values,
int angleplane)
Construct a new Sparse Immutable AnglePlane Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AngleSlopeUnit>> values,
int angleslope)
Construct a new Sparse Immutable AngleSlope Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AngleSlopeUnit>> values,
int angleslope)
Construct a new Sparse Immutable AngleSlope Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AngleSolidUnit>> values,
int length)
Construct a new Sparse Immutable AngleSolid Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AngleSolidUnit>> values,
int length)
Construct a new Sparse Immutable AngleSolid Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AreaUnit>> values,
int length)
Construct a new Sparse Immutable Area Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<AreaUnit>> values,
int length)
Construct a new Sparse Immutable Area Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<DensityUnit>> values,
int length)
Construct a new Sparse Immutable Density Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<DensityUnit>> values,
int length)
Construct a new Sparse Immutable Density Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<DimensionlessUnit>> values,
int dimensionless)
Construct a new Sparse Immutable Dimensionless Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<DimensionlessUnit>> values,
int dimensionless)
Construct a new Sparse Immutable Dimensionless Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalChargeUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalCharge Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalChargeUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalCharge Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalCurrentUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalCurrent Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalCurrentUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalCurrent Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalPotentialUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalPotential Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalPotentialUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalPotential Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalResistanceUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalResistance Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ElectricalResistanceUnit>> values,
int length)
Construct a new Sparse Immutable ElectricalResistance Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<EnergyUnit>> values,
int length)
Construct a new Sparse Immutable Energy Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<EnergyUnit>> values,
int length)
Construct a new Sparse Immutable Energy Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FlowMassUnit>> values,
int length)
Construct a new Sparse Immutable FlowMass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FlowMassUnit>> values,
int length)
Construct a new Sparse Immutable FlowMass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FlowVolumeUnit>> values,
int length)
Construct a new Sparse Immutable FlowVolume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FlowVolumeUnit>> values,
int length)
Construct a new Sparse Immutable FlowVolume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ForceUnit>> values,
int length)
Construct a new Sparse Immutable Force Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<ForceUnit>> values,
int length)
Construct a new Sparse Immutable Force Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FrequencyUnit>> values,
int length)
Construct a new Sparse Immutable Frequency Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<FrequencyUnit>> values,
int length)
Construct a new Sparse Immutable Frequency Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<LengthUnit>> values,
int length)
Construct a new Sparse Immutable Length Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<LengthUnit>> values,
int length)
Construct a new Sparse Immutable Length Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<LinearDensityUnit>> values,
int length)
Construct a new Sparse Immutable LinearDensity Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<LinearDensityUnit>> values,
int length)
Construct a new Sparse Immutable LinearDensity Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MassUnit>> values,
int length)
Construct a new Sparse Immutable Mass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MassUnit>> values,
int length)
Construct a new Sparse Immutable Mass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerAreaUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerArea Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerAreaUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerArea Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerEnergyUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerEnergyUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerEnergy Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerLengthUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerLength Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerLengthUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerLength Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerMassUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerMass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerMassUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerMass Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerTimeUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerTime Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerTimeUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerTime Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerVolumeUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerVolume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyPerVolumeUnit>> values,
int length)
Construct a new Sparse Immutable MoneyPerVolume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyUnit>> values,
int length)
Construct a new Sparse Immutable Money Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<MoneyUnit>> values,
int length)
Construct a new Sparse Immutable Money Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<PowerUnit>> values,
int length)
Construct a new Sparse Immutable Power Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<PowerUnit>> values,
int length)
Construct a new Sparse Immutable Power Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<PressureUnit>> values,
int length)
Construct a new Sparse Immutable Pressure Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<PressureUnit>> values,
int length)
Construct a new Sparse Immutable Pressure Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<SpeedUnit>> values,
int length)
Construct a new Sparse Immutable Speed Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<SpeedUnit>> values,
int length)
Construct a new Sparse Immutable Speed Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TemperatureUnit>> values,
int temperature)
Construct a new Sparse Immutable Temperature Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TemperatureUnit>> values,
int temperature)
Construct a new Sparse Immutable Temperature Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TimeUnit>> values,
int time)
Construct a new Sparse Immutable Time Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TimeUnit>> values,
int time)
Construct a new Sparse Immutable Time Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TorqueUnit>> values,
int length)
Construct a new Sparse Immutable Torque Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<TorqueUnit>> values,
int length)
Construct a new Sparse Immutable Torque Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<U>> values,
int length)
Construct a new Relative Sparse Mutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<U>> values,
int length)
Construct a new Relative Sparse Immutable DoubleVector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<VolumeUnit>> values,
int length)
Construct a new Sparse Immutable Volume Vector.
|
Sparse(SortedMap<Integer,DoubleScalar.Rel<VolumeUnit>> values,
int length)
Construct a new Sparse Immutable Volume Vector.
|
Sparse(Speed[] values)
Construct a new Relative Sparse Immutable Speed Vector.
|
Sparse(Speed[] values)
Construct a new Relative Sparse Immutable Speed Vector.
|
Sparse(Temperature.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(Temperature.Abs[] values)
Construct a new Absolute Sparse Mutable TemperatureVector.
|
Sparse(Temperature.Rel[] values)
Construct a new Relative Sparse Immutable Temperature Vector.
|
Sparse(Temperature.Rel[] values)
Construct a new Relative Sparse Immutable Temperature Vector.
|
Sparse(Time.Abs[] values)
Construct a new Absolute Sparse Immutable DoubleVector.
|
Sparse(Time.Abs[] values)
Construct a new Absolute Sparse Mutable TimeVector.
|
Sparse(Time.Rel[] values)
Construct a new Relative Sparse Immutable Time Vector.
|
Sparse(Time.Rel[] values)
Construct a new Relative Sparse Immutable Time Vector.
|
Sparse(Torque[] values)
Construct a new Relative Sparse Immutable Torque Vector.
|
Sparse(Torque[] values)
Construct a new Relative Sparse Immutable Torque Vector.
|
Sparse(Volume[] values)
Construct a new Relative Sparse Immutable Volume Vector.
|
Sparse(Volume[] values)
Construct a new Relative Sparse Immutable Volume Vector.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
FloatMatrix.checkIndex(int row,
int column)
Check that provided row and column indices are valid.
|
protected static <U extends Unit<U>> |
FloatMatrix.checkNonEmpty(FloatScalar<U>[][] dsArray)
Check that a provided array can be used to create some descendant of a FloatMatrix.
|
protected void |
FloatMatrix.checkSize(float[][] other)
Centralized size equality check.
|
protected void |
FloatMatrix.checkSize(FloatMatrix<?> other)
Centralized size equality check.
|
MutableFloatMatrix.Abs<U> |
MutableFloatMatrix.Abs.decrementBy(FloatMatrix.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
MutableFloatMatrix.Rel<U> |
MutableFloatMatrix.Rel.decrementBy(FloatMatrix.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
protected MutableFloatMatrix<U> |
MutableFloatMatrix.decrementByImpl(FloatMatrix.Rel<U> rel)
Decrement the corresponding values of this Relative FloatMatrix from the values of this MutableFloatMatrix.
|
float |
ReadOnlyFloatMatrixFunctions.determinant()
Compute the determinant of the matrix.
|
float |
FloatMatrix.determinant()
Compute the determinant of the matrix.
|
FloatScalar<U> |
ReadOnlyFloatMatrixFunctions.get(int row,
int column)
Retrieve the value stored at a specified row and column as a FloatScalar.
|
FloatScalar.Abs<U> |
MutableFloatMatrix.Abs.get(int row,
int column)
Retrieve the value stored at a specified row and column as a FloatScalar.
|
FloatScalar.Rel<U> |
MutableFloatMatrix.Rel.get(int row,
int column)
Retrieve the value stored at a specified row and column as a FloatScalar.
|
FloatScalar.Abs<U> |
FloatMatrix.Abs.get(int row,
int column)
Retrieve the value stored at a specified row and column as a FloatScalar.
|
FloatScalar.Rel<U> |
FloatMatrix.Rel.get(int row,
int column)
Retrieve the value stored at a specified row and column as a FloatScalar.
|
float |
ReadOnlyFloatMatrixFunctions.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
float |
FloatMatrix.getInUnit(int row,
int column)
Retrieve the value stored at a specified row and column in the original unit.
|
float |
ReadOnlyFloatMatrixFunctions.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
float |
FloatMatrix.getInUnit(int row,
int column,
U targetUnit)
Retrieve the value stored at a specified row and column converted into a specified unit.
|
float |
ReadOnlyFloatMatrixFunctions.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
float |
FloatMatrix.getSI(int row,
int column)
Retrieve the value stored at a specified row and column in the standard SI unit.
|
MutableFloatMatrix.Abs<U> |
MutableFloatMatrix.Abs.incrementBy(FloatMatrix.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
MutableFloatMatrix.Rel<U> |
MutableFloatMatrix.Rel.incrementBy(FloatMatrix.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
protected MutableFloatMatrix<U> |
MutableFloatMatrix.incrementByImpl(FloatMatrix.Rel<U> rel)
Increment the values in this MutableFloatMatrix by the corresponding values in a Relative FloatMatrix.
|
protected FloatMatrixDataDense |
FloatMatrix.initializeDense(float[][] values)
Import the values and convert them into the SI standard unit.
|
protected FloatMatrixDataDense |
FloatMatrix.initializeDense(FloatScalar<U>[][] values)
Construct the matrix and store the values in the standard SI unit.
|
protected FloatMatrixDataSparse |
FloatMatrix.initializeSparse(float[][] values)
Import the values and convert them into the SI standard unit.
|
protected FloatMatrixDataSparse |
FloatMatrix.initializeSparse(FloatScalar<U>[][] values)
Construct the matrix and store the values in the standard SI unit.
|
static <U extends Unit<U>> |
FloatMatrix.interpolate(FloatMatrix.Abs.Dense<U> zero,
FloatMatrix.Abs.Dense<U> one,
float ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
FloatMatrix.interpolate(FloatMatrix.Abs.Sparse<U> zero,
FloatMatrix.Abs.Sparse<U> one,
float ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
FloatMatrix.interpolate(FloatMatrix.Rel.Dense<U> zero,
FloatMatrix.Rel.Dense<U> one,
float ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
FloatMatrix.interpolate(FloatMatrix.Rel.Sparse<U> zero,
FloatMatrix.Rel.Sparse<U> one,
float ratio)
Interpolate between or extrapolate over two values.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Abs.Dense<U> left,
FloatMatrix.Rel<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Abs.Sparse<U> left,
FloatMatrix.Rel.Dense<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Abs.Sparse<U> left,
FloatMatrix.Rel.Sparse<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Sparse<U>.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Rel.Dense<U> left,
FloatMatrix.Rel<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Rel.Sparse<U> left,
FloatMatrix.Rel.Dense<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.minus(FloatMatrix.Rel.Sparse<U> left,
FloatMatrix.Rel.Sparse<U> right)
Subtract two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Sparse<U>.
|
void |
WriteFloatMatrixFunctions.normalize()
Normalize the matrix, i.e.
|
void |
MutableFloatMatrix.normalize()
Normalize the matrix, i.e.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Abs.Dense<U> left,
FloatMatrix.Rel<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Abs.Sparse<U> left,
FloatMatrix.Rel.Dense<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Abs.Sparse<U> left,
FloatMatrix.Rel.Sparse<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Sparse<U>.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Rel.Dense<U> left,
FloatMatrix.Rel<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Rel.Sparse<U> left,
FloatMatrix.Rel.Dense<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Dense<U>.
|
static <U extends Unit<U>> |
FloatMatrix.plus(FloatMatrix.Rel.Sparse<U> left,
FloatMatrix.Rel.Sparse<U> right)
Add two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Sparse<U>.
|
protected MutableFloatMatrix<U> |
MutableFloatMatrix.scaleValueByValue(float[][] factor)
Scale the values in this MutableFloatMatrix by the corresponding values in a float array.
|
protected void |
MutableFloatMatrix.scaleValueByValue(FloatMatrix<?> factor)
Scale the values in this MutableFloatMatrix by the corresponding values in a FloatMatrix.
|
void |
WriteFloatMatrixFunctions.set(int row,
int column,
FloatScalar<U> value)
Replace the value at row, column by the supplied value which is in a compatible unit.
|
void |
MutableFloatMatrix.set(int row,
int column,
FloatScalar<U> value)
Replace the value at row, column by the supplied value which is in a compatible unit.
|
void |
WriteFloatMatrixFunctions.setInUnit(int row,
int column,
float value,
U valueUnit)
Replace the value at row, column by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
MutableFloatMatrix.setInUnit(int row,
int column,
float value,
U valueUnit)
Replace the value at row, column by the supplied value which is expressed in a supplied (compatible) unit.
|
void |
WriteFloatMatrixFunctions.setSI(int row,
int column,
float valueSI)
Replace the value at row, column by the supplied value which is expressed in the standard SI unit.
|
void |
MutableFloatMatrix.setSI(int row,
int column,
float valueSI)
Replace the value at row, column by the supplied value which is expressed in the standard SI unit.
|
static MutableFloatMatrix.Abs.Dense<SIUnit> |
FloatMatrix.times(FloatMatrix.Abs.Dense<?> left,
FloatMatrix.Abs.Dense<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Dense<SIUnit>.
|
static MutableFloatMatrix.Abs.Sparse<SIUnit> |
FloatMatrix.times(FloatMatrix.Abs.Dense<?> left,
FloatMatrix.Abs.Sparse<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
FloatMatrix.times(FloatMatrix.Abs.Dense<U> left,
float[][] right)
Multiply the values in a FloatMatrix and a float array value by value and store the result in a new
MutableFloatMatrix.Abs.Dense<U>.
|
static MutableFloatMatrix.Abs.Sparse<SIUnit> |
FloatMatrix.times(FloatMatrix.Abs.Sparse<?> left,
FloatMatrix.Abs<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Abs.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
FloatMatrix.times(FloatMatrix.Abs.Sparse<U> left,
float[][] right)
Multiply the values in a FloatMatrix and a float array value by value and store the result in a new
MutableFloatMatrix.Abs.Sparse<U>.
|
static MutableFloatMatrix.Rel.Dense<SIUnit> |
FloatMatrix.times(FloatMatrix.Rel.Dense<?> left,
FloatMatrix.Rel.Dense<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Dense<SIUnit>.
|
static MutableFloatMatrix.Rel.Sparse<SIUnit> |
FloatMatrix.times(FloatMatrix.Rel.Dense<?> left,
FloatMatrix.Rel.Sparse<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
FloatMatrix.times(FloatMatrix.Rel.Dense<U> left,
float[][] right)
Multiply the values in a FloatMatrix and a float array value by value and store the result in a new
MutableFloatMatrix.Rel.Dense<U>.
|
static MutableFloatMatrix.Rel.Sparse<SIUnit> |
FloatMatrix.times(FloatMatrix.Rel.Sparse<?> left,
FloatMatrix.Rel<?> right)
Multiply two FloatMatrices value by value and store the result in a new MutableFloatMatrix.Rel.Sparse<SIUnit>.
|
static <U extends Unit<U>> |
FloatMatrix.times(FloatMatrix.Rel.Sparse<U> left,
float[][] right)
Multiply the values in a FloatMatrix and a float array value by value and store the result in a new
MutableFloatMatrix.Rel.Sparse<U>.
|
| Constructor and Description |
|---|
Dense(float[][] values,
U unit)
Construct a new Absolute Dense MutableFloatMatrix.
|
Dense(float[][] values,
U unit)
Construct a new Relative Dense MutableFloatMatrix.
|
Dense(float[][] values,
U unit)
Construct a new Absolute Dense Immutable FloatMatrix.
|
Dense(float[][] values,
U unit)
Construct a new Relative Dense Immutable FloatMatrix.
|
Dense(FloatScalar.Abs<U>[][] values)
Construct a new Absolute Dense MutableFloatMatrix.
|
Dense(FloatScalar.Abs<U>[][] values)
Construct a new Absolute Dense Immutable FloatMatrix.
|
Dense(FloatScalar.Rel<U>[][] values)
Construct a new Relative Dense MutableFloatMatrix.
|
Dense(FloatScalar.Rel<U>[][] values)
Construct a new Relative Dense Immutable FloatMatrix.
|
FloatMatrixDataDense(float[][] matrixSI)
Create a vector with dense data.
|
FloatMatrixDataDense(float[] matrixSI,
int rows,
int cols)
Create a vector with dense data.
|
FloatMatrixDataSparse(float[][] matrixSI)
Create a vector with sparse data.
|
Sparse(float[][] values,
U unit)
Construct a new Absolute Sparse MutableFloatMatrix.
|
Sparse(float[][] values,
U unit)
Construct a new Relative Sparse MutableFloatMatrix.
|
Sparse(float[][] values,
U unit)
Construct a new Absolute Sparse Immutable FloatMatrix.
|
Sparse(float[][] values,
U unit)
Construct a new Relative Sparse Immutable FloatMatrix.
|
Sparse(FloatScalar.Abs<U>[][] values)
Construct a new Absolute Sparse MutableFloatMatrix.
|
Sparse(FloatScalar.Abs<U>[][] values)
Construct a new Absolute Sparse Immutable FloatMatrix.
|
Sparse(FloatScalar.Rel<U>[][] values)
Construct a new Relative Sparse MutableFloatMatrix.
|
Sparse(FloatScalar.Rel<U>[][] values)
Construct a new Relative Sparse Immutable FloatMatrix.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
FloatVector.checkIndex(int index)
Check that a provided index is valid.
|
protected void |
FloatVector.checkSize(float[] other)
Centralized size equality check.
|
protected void |
FloatVector.checkSize(FloatVector<?> other)
Centralized size equality check.
|
MutableFloatVector.Abs<U> |
MutableFloatVector.Abs.decrementBy(FloatVector.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
MutableFloatVector.Rel<U> |
MutableFloatVector.Rel.decrementBy(FloatVector.Rel<U> decrement)
Decrement the value by the supplied value and return the result.
|
protected MutableFloatVector<U> |
MutableFloatVector.decrementByImpl(FloatVector.Rel<U> rel)
Decrement the corresponding values of this Relative FloatVector from the values of this MutableFloatVector.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.divide(FloatAccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatAccelerationVector |
FloatAccelerationVector.divide(FloatAccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.divide(FloatLengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
FloatLengthVector.Rel.divide(FloatLengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatVector.Rel<U> |
MutableFloatVector.Rel.divide(FloatVector.Rel<U> rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatVector.Rel<U> |
FloatVector.Rel.divide(FloatVector.Rel<U> rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.divide(MutableFloatAccelerationVector rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.divide(MutableFloatLengthVector.Rel rel)
Divide this Relative value by a Relative value for a vector or matrix.
|
FloatScalar.Abs<U> |
MutableFloatVector.Abs.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatScalar.Rel<U> |
MutableFloatVector.Rel.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatLength.Abs |
MutableFloatLengthVector.Abs.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatLength.Rel |
MutableFloatLengthVector.Rel.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatAcceleration |
MutableFloatAccelerationVector.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatScalar<U> |
FloatVectorInterface.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatScalar.Abs<U> |
FloatVector.Abs.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatScalar.Rel<U> |
FloatVector.Rel.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatLength.Abs |
FloatLengthVector.Abs.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatLength.Rel |
FloatLengthVector.Rel.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
FloatAcceleration |
FloatAccelerationVector.get(int index)
Retrieve the value stored at a specified index as a FloatScalar.
|
float |
FloatVectorInterface.getInUnit(int index)
Retrieve the value stored at a specified position in the original unit.
|
float |
FloatVector.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 |
FloatVector.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 |
FloatVector.getSI(int index)
Retrieve the value stored at a specified position in the standard SI unit.
|
MutableFloatVector.Abs<U> |
MutableFloatVector.Abs.incrementBy(FloatVector.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
MutableFloatVector.Rel<U> |
MutableFloatVector.Rel.incrementBy(FloatVector.Rel<U> increment)
Increment the value by the supplied value and return the result.
|
protected MutableFloatVector<U> |
MutableFloatVector.incrementByImpl(FloatVector.Rel<U> rel)
Increment the values in this MutableFloatVector by the corresponding values in a Relative FloatVector.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.minus(FloatAccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatAccelerationVector |
FloatAccelerationVector.minus(FloatAccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Abs.minus(FloatLengthVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
FloatLengthVector.Rel |
FloatLengthVector.Abs.minus(FloatLengthVector.Abs abs)
Subtract a Absolute value from this Absolute value for a vector or matrix.
|
FloatLengthVector.Abs |
MutableFloatLengthVector.Abs.minus(FloatLengthVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.minus(FloatLengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatLengthVector.Abs |
FloatLengthVector.Abs.minus(FloatLengthVector.Rel rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
FloatLengthVector.Rel |
FloatLengthVector.Rel.minus(FloatLengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatVector.Rel<U> |
MutableFloatVector.Abs.minus(FloatVector.Abs<U> rel)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
FloatVector.Rel<U> |
FloatVector.Abs.minus(FloatVector.Abs<U> abs)
Subtract an Absolute value from this Absolute value for a vector or matrix.
|
FloatVector.Abs<U> |
MutableFloatVector.Abs.minus(FloatVector.Rel<U> rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
FloatVector.Rel<U> |
MutableFloatVector.Rel.minus(FloatVector.Rel<U> rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatVector.Abs<U> |
FloatVector.Abs.minus(FloatVector.Rel<U> rel)
Subtract a Relative value from this Absolute value for a vector or matrix.
|
FloatVector.Rel<U> |
FloatVector.Rel.minus(FloatVector.Rel<U> rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.minus(MutableFloatAccelerationVector rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.minus(MutableFloatLengthVector.Rel rel)
Subtract a Relative value from this Relative value for a vector or matrix.
|
void |
MutableFloatVectorInterface.normalize()
Normalize the vector, i.e.
|
void |
MutableFloatVector.normalize()
Normalize the vector, i.e.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.plus(FloatAccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatAccelerationVector |
FloatAccelerationVector.plus(FloatAccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatLengthVector.Abs |
MutableFloatLengthVector.Abs.plus(FloatLengthVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.plus(FloatLengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatLengthVector.Abs |
FloatLengthVector.Abs.plus(FloatLengthVector.Rel rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
FloatLengthVector.Rel |
FloatLengthVector.Rel.plus(FloatLengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatVector.Abs<U> |
MutableFloatVector.Rel.plus(FloatVector.Abs<U> abs)
Add an Absolute value to this Relative value for a vector or matrix.
|
FloatVector.Abs<U> |
FloatVector.Rel.plus(FloatVector.Abs<U> rel)
Add an Absolute value to this Relative value for a vector or matrix.
|
FloatVector.Abs<U> |
MutableFloatVector.Abs.plus(FloatVector.Rel<U> rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
FloatVector.Rel<U> |
MutableFloatVector.Rel.plus(FloatVector.Rel<U> rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatVector.Abs<U> |
FloatVector.Abs.plus(FloatVector.Rel<U> rel)
Add a Relative value to this Absolute value for a vector or matrix.
|
FloatVector.Rel<U> |
FloatVector.Rel.plus(FloatVector.Rel<U> rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.plus(MutableFloatAccelerationVector rel)
Add a Relative value to this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.plus(MutableFloatLengthVector.Rel rel)
Add a Relative value to this Relative value for a vector or matrix.
|
protected MutableFloatVector<U> |
MutableFloatVector.scaleValueByValue(float[] factor)
Scale the values in this MutableFloatVector by the corresponding values in a float array.
|
protected void |
MutableFloatVector.scaleValueByValue(FloatVector<?> factor)
Scale the values in this MutableFloatVector by the corresponding values in a FloatVector.
|
void |
MutableFloatVectorInterface.set(int index,
FloatScalar<U> value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
MutableFloatVector.set(int index,
FloatScalar<U> value)
Replace the value at index by the supplied value which is in a compatible unit.
|
void |
MutableFloatVectorInterface.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 |
MutableFloatVector.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 |
MutableFloatVectorInterface.setSI(int index,
float valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
void |
MutableFloatVector.setSI(int index,
float valueSI)
Replace the value at index by the supplied value which is expressed in the standard SI unit.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.times(FloatAccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FloatAccelerationVector |
FloatAccelerationVector.times(FloatAccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.times(FloatLengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
FloatLengthVector.Rel.times(FloatLengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FloatVector.Rel<U> |
MutableFloatVector.Rel.times(FloatVector.Rel<U> rel)
Multiply a Relative value by this Relative value for a vector or matrix.
|
FloatVector.Rel<U> |
FloatVector.Rel.times(FloatVector.Rel<U> rel)
Multiply a Relative value by this Relative value for a vector or matrix.
|
FloatAccelerationVector |
MutableFloatAccelerationVector.times(MutableFloatAccelerationVector rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
FloatLengthVector.Rel |
MutableFloatLengthVector.Rel.times(MutableFloatLengthVector.Rel rel)
Multiply a Relative value with this Relative value for a vector or matrix.
|
| Constructor and Description |
|---|
Dense(float[] values,
AccelerationUnit unit)
Construct a new Dense Immutable Float Acceleration Vector.
|
Dense(float[] values,
AccelerationUnit unit)
Construct a new Dense Immutable Float Acceleration Vector.
|
Dense(float[] values,
LengthUnit unit)
Construct a new Absolute Dense Mutable FloatLengthVector.
|
Dense(float[] values,
LengthUnit unit)
Construct a new Dense Immutable Float FloatLength Vector.
|
Dense(float[] values,
LengthUnit unit)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(float[] values,
LengthUnit unit)
Construct a new Dense Immutable Float FloatLength Vector.
|
Dense(float[] values,
U unit)
Construct a new Absolute Dense Mutable FloatVector.
|
Dense(float[] values,
U unit)
Construct a new Relative Dense Mutable FloatVector.
|
Dense(float[] values,
U unit)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(float[] values,
U unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(FloatAcceleration[] values)
Construct a new Relative Dense Immutable Acceleration Vector.
|
Dense(FloatAcceleration[] values)
Construct a new Relative Dense Immutable Acceleration Vector.
|
Dense(FloatLength.Abs[] values)
Construct a new Absolute Dense Mutable FloatLengthVector.
|
Dense(FloatLength.Abs[] values)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(FloatLength.Rel[] values)
Construct a new Relative Dense Immutable FloatLength Vector.
|
Dense(FloatLength.Rel[] values)
Construct a new Relative Dense Immutable FloatLength Vector.
|
Dense(FloatScalar.Abs<U>[] values)
Construct a new Absolute Dense Mutable FloatVector.
|
Dense(FloatScalar.Abs<U>[] values)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(FloatScalar.Rel<U>[] values)
Construct a new Relative Dense Mutable FloatVector.
|
Dense(FloatScalar.Rel<U>[] values)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<Float> values,
AccelerationUnit unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<Float> values,
AccelerationUnit unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<Float> values,
LengthUnit unit)
Construct a new Absolute Dense Mutable FloatLengthVector.
|
Dense(List<Float> values,
LengthUnit unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<Float> values,
LengthUnit unit)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(List<Float> values,
LengthUnit unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<Float> values,
U unit)
Construct a new Absolute Dense Mutable FloatVector.
|
Dense(List<Float> values,
U unit)
Construct a new Relative Dense Mutable FloatVector.
|
Dense(List<Float> values,
U unit)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(List<Float> values,
U unit)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Abs<LengthUnit>> values)
Construct a new Absolute Dense Mutable FloatLengthVector.
|
Dense(List<FloatScalar.Abs<LengthUnit>> values)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Abs<U>> values)
Construct a new Absolute Dense Mutable FloatVector.
|
Dense(List<FloatScalar.Abs<U>> values)
Construct a new Absolute Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Rel<AccelerationUnit>> values)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Rel<AccelerationUnit>> values)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Rel<LengthUnit>> values)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Rel<LengthUnit>> values)
Construct a new Relative Dense Immutable FloatVector.
|
Dense(List<FloatScalar.Rel<U>> values)
Construct a new Relative Dense Mutable FloatVector.
|
Dense(List<FloatScalar.Rel<U>> values)
Construct a new Relative Dense Immutable FloatVector.
|
Sparse(float[] values,
AccelerationUnit unit)
Construct a new Sparse Immutable Float Acceleration Vector.
|
Sparse(float[] values,
AccelerationUnit unit)
Construct a new Sparse Immutable Float Acceleration Vector.
|
Sparse(float[] values,
LengthUnit unit)
Construct a new Absolute Sparse Mutable FloatLengthVector.
|
Sparse(float[] values,
LengthUnit unit)
Construct a new Sparse Immutable Float FloatLength Vector.
|
Sparse(float[] values,
LengthUnit unit)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(float[] values,
LengthUnit unit)
Construct a new Sparse Immutable Float FloatLength Vector.
|
Sparse(float[] values,
U unit)
Construct a new Absolute Sparse Mutable FloatVector.
|
Sparse(float[] values,
U unit)
Construct a new Relative Sparse Mutable FloatVector.
|
Sparse(float[] values,
U unit)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(float[] values,
U unit)
Construct a new Relative Sparse Immutable FloatVector.
|
Sparse(FloatAcceleration[] values)
Construct a new Relative Sparse Immutable Acceleration Vector.
|
Sparse(FloatAcceleration[] values)
Construct a new Relative Sparse Immutable Acceleration Vector.
|
Sparse(FloatLength.Abs[] values)
Construct a new Absolute Sparse Mutable FloatLengthVector.
|
Sparse(FloatLength.Abs[] values)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(FloatLength.Rel[] values)
Construct a new Relative Sparse Immutable FloatLength Vector.
|
Sparse(FloatLength.Rel[] values)
Construct a new Relative Sparse Immutable FloatLength Vector.
|
Sparse(FloatScalar.Abs<U>[] values)
Construct a new Absolute Sparse Mutable FloatVector.
|
Sparse(FloatScalar.Abs<U>[] values)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(FloatScalar.Rel<U>[] values)
Construct a new Relative Sparse Mutable FloatVector.
|
Sparse(FloatScalar.Rel<U>[] values)
Construct a new Relative Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,Float> values,
AccelerationUnit unit,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,Float> values,
AccelerationUnit unit,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,Float> values,
LengthUnit unit,
int length)
Construct a new Absolute Sparse Mutable FloatLengthVector.
|
Sparse(SortedMap<Integer,Float> values,
LengthUnit unit,
int length)
Construct a new Sparse Immutable FloatLength Vector.
|
Sparse(SortedMap<Integer,Float> values,
LengthUnit unit,
int length)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,Float> values,
LengthUnit unit,
int length)
Construct a new Sparse Immutable FloatLength Vector.
|
Sparse(SortedMap<Integer,Float> values,
U unit,
int length)
Construct a new Absolute Sparse Mutable FloatVector.
|
Sparse(SortedMap<Integer,Float> values,
U unit,
int length)
Construct a new Relative Sparse Mutable FloatVector.
|
Sparse(SortedMap<Integer,Float> values,
U unit,
int length)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,Float> values,
U unit,
int length)
Construct a new Relative Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,FloatScalar.Abs<LengthUnit>> values,
int length)
Construct a new Absolute Sparse Mutable FloatLengthVector.
|
Sparse(SortedMap<Integer,FloatScalar.Abs<LengthUnit>> values,
int length)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,FloatScalar.Abs<U>> values,
int length)
Construct a new Absolute Sparse Mutable FloatVector.
|
Sparse(SortedMap<Integer,FloatScalar.Abs<U>> values,
int length)
Construct a new Absolute Sparse Immutable FloatVector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<AccelerationUnit>> values,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<AccelerationUnit>> values,
int length)
Construct a new Sparse Immutable Acceleration Vector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<LengthUnit>> values,
int length)
Construct a new Sparse Immutable FloatLength Vector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<LengthUnit>> values,
int length)
Construct a new Sparse Immutable FloatLength Vector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<U>> values,
int length)
Construct a new Relative Sparse Mutable FloatVector.
|
Sparse(SortedMap<Integer,FloatScalar.Rel<U>> values,
int length)
Construct a new Relative Sparse Immutable FloatVector.
|
Copyright © 2015 Delft University of Technology. All rights reserved.