Uses of Class
net.sf.tweety.math.matrix.Matrix
-
Packages that use Matrix Package Description net.sf.tweety.arg.bipolar.syntax net.sf.tweety.arg.dung.syntax net.sf.tweety.graphs net.sf.tweety.logics.bpm.syntax net.sf.tweety.math.matrix -
-
Uses of Matrix in net.sf.tweety.arg.bipolar.syntax
Methods in net.sf.tweety.arg.bipolar.syntax that return Matrix Modifier and Type Method Description Matrix
AbstractBipolarFramework. getAdjacencyMatrix()
-
Uses of Matrix in net.sf.tweety.arg.dung.syntax
Methods in net.sf.tweety.arg.dung.syntax that return Matrix Modifier and Type Method Description Matrix
DungTheory. getAdjacencyMatrix()
-
Uses of Matrix in net.sf.tweety.graphs
Methods in net.sf.tweety.graphs that return Matrix Modifier and Type Method Description Matrix
DefaultGraph. getAdjacencyMatrix()
Matrix
Graph. getAdjacencyMatrix()
Returns the adjacency matrix of this graph (the order of the nodes is the same as returned by "iterator()"). -
Uses of Matrix in net.sf.tweety.logics.bpm.syntax
Methods in net.sf.tweety.logics.bpm.syntax that return Matrix Modifier and Type Method Description Matrix
BpmnModel. getAdjacencyMatrix()
-
Uses of Matrix in net.sf.tweety.math.matrix
Methods in net.sf.tweety.math.matrix that return Matrix Modifier and Type Method 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.Methods in net.sf.tweety.math.matrix with parameters of type Matrix Modifier and Type Method 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.
-