- map(Matrix.Function) - Method in class com.kylecorry.matrix.Matrix
-
Map each item in the matrix to a different value using a transformation
function.
- Matrix - Class in com.kylecorry.matrix
-
- Matrix(double[][]) - Constructor for class com.kylecorry.matrix.Matrix
-
A mathematical matrix containing an array of values.
- Matrix(int, int) - Constructor for class com.kylecorry.matrix.Matrix
-
A mathematical matrix containing an array of values.
- Matrix(int, int, double) - Constructor for class com.kylecorry.matrix.Matrix
-
A mathematical matrix containing an array of values.
- Matrix.Function - Class in com.kylecorry.matrix
-
A transformation function that can be used to map input to a different
output.
- max() - Method in class com.kylecorry.matrix.Matrix
-
Get the max value of the matrix.
- min() - Method in class com.kylecorry.matrix.Matrix
-
Get the min value of the matrix.
- multiply(Matrix) - Method in class com.kylecorry.matrix.Matrix
-
Multiply two matrices together using element wise multiplication.
- multiply(double) - Method in class com.kylecorry.matrix.Matrix
-
Multiply each item in the matrix by a value.