public class DoubleMatrix
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 |
---|
DoubleMatrix() |
DoubleMatrix(int rows,
int cols) |
Modifier and Type | Method and Description |
---|---|
double[] |
colWithMaxIn(int scoreRow) |
double |
get(int row,
int col) |
void |
put(int row,
int col,
double value) |
java.lang.String |
toGrid3(int limit) |
java.lang.String |
toString() |
public DoubleMatrix()
public DoubleMatrix(int rows, int cols)
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toGrid3(int limit)
public void put(int row, int col, double value)
public double get(int row, int col)
public double[] colWithMaxIn(int scoreRow)