Package | Description |
---|---|
ptolemy.math |
Math classes.
|
ptolemy.math.test |
The ptolemy.math.test package.
|
Modifier and Type | Method and Description |
---|---|
static float[] |
FloatArrayMath.applyUnaryOperation(FloatUnaryOperation op,
float[] array)
Return a new array that is formed by applying an instance of a
FloatUnaryOperation to each element in the input array
(op.operate(array[i])).
|
static float[][] |
FloatMatrixMath.applyUnaryOperation(FloatUnaryOperation op,
float[][] matrix)
Return a new array that is formed by applying an instance of a
FloatUnaryOperation to each element in the input matrix
(op.operate(matrix[i][j])).
|
Modifier and Type | Class and Description |
---|---|
class |
TestFloatUnaryOperation
A operation taking one argument of type float, and producing a value of
type float.
|