Uses of Class
org.tweetyproject.math.matrix.Matrix
- 
Packages that use Matrix Package Description org.tweetyproject.arg.bipolar.syntax org.tweetyproject.arg.dung.syntax org.tweetyproject.graphs org.tweetyproject.logics.bpm.syntax org.tweetyproject.math.matrix  - 
- 
Uses of Matrix in org.tweetyproject.arg.bipolar.syntax
Methods in org.tweetyproject.arg.bipolar.syntax that return Matrix Modifier and Type Method Description MatrixAbstractBipolarFramework. getAdjacencyMatrix() - 
Uses of Matrix in org.tweetyproject.arg.dung.syntax
Methods in org.tweetyproject.arg.dung.syntax that return Matrix Modifier and Type Method Description MatrixDungTheory. getAdjacencyMatrix() - 
Uses of Matrix in org.tweetyproject.graphs
Methods in org.tweetyproject.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 org.tweetyproject.logics.bpm.syntax
Methods in org.tweetyproject.logics.bpm.syntax that return Matrix Modifier and Type Method Description MatrixBpmnModel. getAdjacencyMatrix() - 
Uses of Matrix in org.tweetyproject.math.matrix
Methods in org.tweetyproject.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 org.tweetyproject.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. 
 -