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 MatrixAbstractBipolarFramework. 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 MatrixDungTheory. getAdjacencyMatrix() -
Uses of Matrix in net.sf.tweety.graphs
Methods in net.sf.tweety.graphs that return Matrix Modifier and Type Method Description MatrixDefaultGraph. getAdjacencyMatrix()MatrixGraph. 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 MatrixBpmnModel. 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 MatrixMatrix. add(Matrix other)Adds the given matrix to this one and returns the result.static MatrixMatrix. getIdentityMatrix(int dim)Returns the identity matrix of the given dimension.MatrixMatrix. minus(Matrix other)Makes a subtraction of the given matrix from this one and returns the result.MatrixMatrix. mult(double scalar)Multiply this matrix with the given scalar (every entry is multiplied)MatrixMatrix. mult(Matrix other)Multiply this matrix with the given one.MatrixMatrix. mult(Term scalar)Multiply this matrix with the given scalar (every entry is multiplied)MatrixMatrix. simplify()Simplifies every entry.MatrixMatrix. transpose()Transposes this matrix, i.e.Methods in net.sf.tweety.math.matrix with parameters of type Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix other)Adds the given matrix to this one and returns the result.MatrixMatrix. minus(Matrix other)Makes a subtraction of the given matrix from this one and returns the result.MatrixMatrix. mult(Matrix other)Multiply this matrix with the given one.
-