public interface Matrix
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
<T extends Matrix> |
copy()
Creates an exact copy of the matrix
|
<T extends Matrix> |
createLike()
Creates a new matrix with the same shape as this matrix
|
int |
getNumCols()
Returns the number of columns in this matrix.
|
int |
getNumRows()
Returns the number of rows in this matrix.
|
MatrixType |
getType()
Returns the type of matrix
|
void |
print()
Prints the matrix to standard out.
|
void |
set(Matrix original)
Sets this matrix to be identical to the 'original' matrix passed in.
|
int getNumRows()
int getNumCols()
<T extends Matrix> T copy()
<T extends Matrix> T createLike()
void set(Matrix original)
void print()
MatrixType getType()