double |
Matrix.get(int i,
int j) |
Get a value at a specified row and column
|
void |
Matrix.get(Matrix.MatrixIndex matrixIndex) |
Get a value using a matrixIndex and store that into the matrix index
|
Matrix |
Matrix.removeColumn(int index) |
Removes a columns in the Matrix
|
Matrix |
Matrix.removeRow(int index) |
Removes a row in the Matrix
|
void |
Matrix.set(int i,
int j,
double value) |
Set a value at a specified row and column
|
void |
Matrix.set(Matrix.MatrixIndex matrixIndex) |
Set a value using a matrix index object
|
Matrix |
Matrix.setColumn(Matrix m,
int j) |
sets the column of the matrix to the values from the input matrix
|
Matrix |
Matrix.setColumn(Vector v,
int j) |
sets the column of the matrix to the values from the vector
|
Matrix |
Matrix.setRow(Matrix m,
int i) |
sets the row of the matrix to the values from the input matrix
|
Matrix |
Matrix.setRow(Vector v,
int i) |
sets the row of the matrix to the values from the vector
|