public class FloatMatrix
extends java.lang.Object
implements java.io.Serializable
NOTE: When specifying the SIZE of a matrix, use 1-based measure. When specifying the LOCATION of a cell, use 0-based addresses (analogous to arrays).
Constructor and Description |
---|
FloatMatrix() |
FloatMatrix(int rows,
int cols,
int layers) |
public FloatMatrix()
public FloatMatrix(int rows, int cols, int layers)
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toGrid()
public void put(int row, int col, int layer, float value)
public float get(int row, int col, int layer)
public void add(int row, int col, float value)