| Package | Description |
|---|---|
| net.sf.tweety.math.matrix |
| Modifier and Type | Method and Description |
|---|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
Matrix |
Matrix.add(Matrix other)
Adds the given matrix to this one and returns the result.
|
Matrix |
Matrix.minus(Matrix other)
Makes a subtraction of the given matrix from this one and returns the result.
|
Matrix |
Matrix.mult(Matrix other)
Multiply this matrix with the given one.
|
Copyright © 2018. All rights reserved.