public interface Matrix
extends scala.Serializable
Modifier and Type | Method and Description |
---|---|
double |
apply(int i,
int j)
Gets the (i, j)-th element.
|
int |
numCols()
Number of columns.
|
int |
numRows()
Number of rows.
|
double[] |
toArray()
Converts to a dense array in column major.
|
breeze.linalg.Matrix<Object> |
toBreeze()
Converts to a breeze matrix.
|
String |
toString() |
int numRows()
int numCols()
double[] toArray()
breeze.linalg.Matrix<Object> toBreeze()
double apply(int i, int j)
String toString()
toString
in class Object