Uses of Interface
org.djunits.unit.scale.Scale
Package | Description |
---|---|
org.djunits.unit |
Units for version 4 of DJUNITS.
|
org.djunits.unit.scale |
Unit scales for DJUNITS.
|
org.djunits.value.vdouble.matrix.data |
Internal data storage for the Matrix.
|
org.djunits.value.vdouble.vector.data |
Internal data storage for the Vector.
|
org.djunits.value.vfloat.matrix.data |
package-info.java.
|
org.djunits.value.vfloat.vector.data |
Internal storage for the FloatVector.
|
-
Uses of Scale in org.djunits.unit
Methods in org.djunits.unit that return Scale Modifier and Type Method Description Scale
Unit.Builder. getScale()
Retrieve the scale.Scale
Unit. getScale()
Retrieve the scale of this unit.Methods in org.djunits.unit with parameters of type Scale Modifier and Type Method Description AbsoluteLinearUnit.Builder<AU,RU>
AbsoluteLinearUnit.Builder. setScale(Scale scale)
Set the scale.Unit.Builder<U>
Unit.Builder. setScale(Scale newScale)
Set the scale. -
Uses of Scale in org.djunits.unit.scale
Classes in org.djunits.unit.scale that implement Scale Modifier and Type Class Description class
GradeScale
A Scale for transforming a slope as a grade, where 45 degrees is 1, and 90 degrees is infinite, to radians.class
IdentityScale
A Scale for standard, e.g.class
LinearScale
A Scale for linear transformations not involving a zero-offset, e.g.class
OffsetLinearScale
Scale with factor and zero point offset. -
Uses of Scale in org.djunits.value.vdouble.matrix.data
Methods in org.djunits.value.vdouble.matrix.data with parameters of type Scale Modifier and Type Method Description static DoubleMatrixData
DoubleMatrixData. instantiate(double[][] values, Scale scale, StorageType storageType)
Instantiate a DoubleMatrixData with the right data type.static DoubleMatrixDataSparse
DoubleMatrixDataSparse. instantiate(double[][] values, Scale scale)
Instantiate a DoubleMatrixDataSparse from an array. -
Uses of Scale in org.djunits.value.vdouble.vector.data
Methods in org.djunits.value.vdouble.vector.data with parameters of type Scale Modifier and Type Method Description static DoubleVectorData
DoubleVectorData. instantiate(double[] values, Scale scale, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.static DoubleVectorData
DoubleVectorData. instantiate(List<Double> values, Scale scale, StorageType storageType)
Instantiate a DoubleVectorData with the right data type.static DoubleVectorData
DoubleVectorData. instantiate(SortedMap<Integer,Double> valueMap, int length, Scale scale, StorageType storageType)
Instantiate a DoubleVectorData with the right data type. -
Uses of Scale in org.djunits.value.vfloat.matrix.data
Methods in org.djunits.value.vfloat.matrix.data with parameters of type Scale Modifier and Type Method Description static FloatMatrixData
FloatMatrixData. instantiate(float[][] values, Scale scale, StorageType storageType)
Instantiate a FloatMatrixData with the right data type.static FloatMatrixDataSparse
FloatMatrixDataSparse. instantiate(float[][] values, Scale scale)
Instantiate a FloatMatrixDataSparse from an array. -
Uses of Scale in org.djunits.value.vfloat.vector.data
Methods in org.djunits.value.vfloat.vector.data with parameters of type Scale Modifier and Type Method Description static FloatVectorData
FloatVectorData. instantiate(float[] values, Scale scale, StorageType storageType)
Instantiate a FloatVectorData with the right data type.static FloatVectorData
FloatVectorData. instantiate(List<Float> values, Scale scale, StorageType storageType)
Instantiate a FloatVectorData with the right data type.static FloatVectorData
FloatVectorData. instantiate(SortedMap<Integer,Float> valueMap, int length, Scale scale, StorageType storageType)
Instantiate a FloatVectorData with the right data type.