public interface Matrix
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
<T extends Matrix> |
copy() |
int |
getNumCols()
Returns the number of columns in this matrix.
|
int |
getNumRows()
Returns the number of rows in this matrix.
|
void |
print() |
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()
void set(Matrix original)
void print()