Matrix |
Matrix.add(Matrix other) |
Adds the given matrix to this one and returns the result.
|
static Matrix |
Matrix.getIdentityMatrix(int dim) |
Returns the identity matrix of the given dimension.
|
Matrix |
Matrix.minus(Matrix other) |
Makes a subtraction of the given matrix from this one and returns the result.
|
Matrix |
Matrix.mult(double scalar) |
Multiply this matrix with the given scalar
(every entry is multiplied)
|
Matrix |
Matrix.mult(Matrix other) |
Multiply this matrix with the given one.
|
Matrix |
Matrix.mult(Term scalar) |
Multiply this matrix with the given scalar
(every entry is multiplied)
|
Matrix |
Matrix.simplify() |
Simplifies every entry.
|
Matrix |
Matrix.transpose() |
Transposes this matrix, i.e.
|