Uses of Interface
org.djunits.value.vfloat.function.FloatFunction
Package | Description |
---|---|
org.djunits.value.vfloat.function |
Functions for float arguments.
|
org.djunits.value.vfloat.matrix.base |
Interfaces, abstract classes and utilities for FloatMatrix.
|
org.djunits.value.vfloat.matrix.data |
package-info.java.
|
org.djunits.value.vfloat.vector.base |
Interfaces, abstract classes and utilities for FloatVector.
|
org.djunits.value.vfloat.vector.data |
Internal storage for the FloatVector.
|
-
Uses of FloatFunction in org.djunits.value.vfloat.function
Fields in org.djunits.value.vfloat.function declared as FloatFunction Modifier and Type Field Description static FloatFunction
FloatMathFunctions. ABS
Function that returnsMath.abs(a)
.static FloatFunction
FloatMathFunctions. ACOS
Function that returnsMath.acos(a)
.static FloatFunction
FloatMathFunctions. ASIN
Function that returnsMath.asin(a)
.static FloatFunction
FloatMathFunctions. ATAN
Function that returnsMath.atan(a)
.static FloatFunction
FloatMathFunctions. CBRT
Function that returnsMath.cbrt(a)
.static FloatFunction
FloatMathFunctions. CEIL
Function that returnsMath.ceil(a)
.static FloatFunction
FloatMathFunctions. COS
Function that returnsMath.cos(a)
.static FloatFunction
FloatMathFunctions. COSH
Function that returnsMath.cosh(a)
.static FloatFunction
FloatMathFunctions. EXP
Function that returnsMath.exp(a)
.static FloatFunction
FloatMathFunctions. EXPM1
Function that returnsMath.expm1(a)
.static FloatFunction
FloatMathFunctions. FLOOR
Function that returnsMath.floor(a)
.static FloatFunction
FloatMathFunctions. INV
Function that returns1/a
.static FloatFunction
FloatMathFunctions. LOG
Function that returnsMath.log(a)
.static FloatFunction
FloatMathFunctions. LOG10
Function that returnsMath.log10(a)
.static FloatFunction
FloatMathFunctions. LOG1P
Function that returnsMath.log1p(a)
.static FloatFunction
FloatMathFunctions. NEG
Function that returns-a
.static FloatFunction
FloatMathFunctions. RINT
Function that returnsMath.rint(a)
.static FloatFunction
FloatMathFunctions. SIGNUM
Function that returnsMath.signum(a)
.static FloatFunction
FloatMathFunctions. SIN
Function that returnsMath.sin(a)
.static FloatFunction
FloatMathFunctions. SINH
Function that returnsMath.sinh(a)
.static FloatFunction
FloatMathFunctions. SQRT
Function that returnsMath.sqrt(a)
.static FloatFunction
FloatMathFunctions. TAN
Function that returnsMath.tan(a)
.static FloatFunction
FloatMathFunctions. TANH
Function that returnsMath.tanh(a)
.Methods in org.djunits.value.vfloat.function that return FloatFunction Modifier and Type Method Description static FloatFunction
FloatMathFunctions. DEC(float b)
Function that returnsa - b
.static FloatFunction
FloatMathFunctions. DIV(float b)
Function that returnsa / b
.static FloatFunction
FloatMathFunctions. INC(float b)
Function that returnsa + b
.static FloatFunction
FloatMathFunctions. MULT(float b)
Function that returnsa * b
.static FloatFunction
FloatMathFunctions. POW(float b)
Function that returnsMath.pow(a, b)
. -
Uses of FloatFunction in org.djunits.value.vfloat.matrix.base
Methods in org.djunits.value.vfloat.matrix.base with parameters of type FloatFunction Modifier and Type Method Description M
AbstractFloatMatrix. assign(FloatFunction floatFunction)
Execute a function on a cell by cell basis.M
FloatMatrixInterface. assign(FloatFunction floatFunction)
Execute a function on a cell by cell basis. -
Uses of FloatFunction in org.djunits.value.vfloat.matrix.data
Methods in org.djunits.value.vfloat.matrix.data with parameters of type FloatFunction Modifier and Type Method Description abstract FloatMatrixData
FloatMatrixData. assign(FloatFunction doubleFunction)
Apply an operation to each cell.FloatMatrixDataDense
FloatMatrixDataDense. assign(FloatFunction floatFunction)
Apply an operation to each cell.FloatMatrixData
FloatMatrixDataSparse. assign(FloatFunction floatFunction)
Apply an operation to each cell. -
Uses of FloatFunction in org.djunits.value.vfloat.vector.base
Methods in org.djunits.value.vfloat.vector.base with parameters of type FloatFunction Modifier and Type Method Description V
AbstractFloatVector. assign(FloatFunction floatFunction)
Execute a function on a cell by cell basis.V
FloatVectorInterface. assign(FloatFunction floatFunction)
Execute a function on a cell by cell basis. -
Uses of FloatFunction in org.djunits.value.vfloat.vector.data
Methods in org.djunits.value.vfloat.vector.data with parameters of type FloatFunction Modifier and Type Method Description abstract FloatVectorData
FloatVectorData. assign(FloatFunction floatFunction)
Apply an operation to each cell.FloatVectorDataDense
FloatVectorDataDense. assign(FloatFunction floatFunction)
Apply an operation to each cell.FloatVectorData
FloatVectorDataSparse. assign(FloatFunction floatFunction)
Apply an operation to each cell.