Uses of Class
math.matrix.expressParser.Matrix
| Package | Description |
|---|---|
| math.matrix.equationParser | |
| math.matrix.expressParser | |
| math.numericalmethods | |
| parser |
Classes designed to parse a mathematical expression.
|
-
Uses of Matrix in math.matrix.equationParser
Methods in math.matrix.equationParser that return Matrix Modifier and Type Method Description MatrixLinearSystemParser. getEquationMatrix() -
Uses of Matrix in math.matrix.expressParser
Methods in math.matrix.expressParser that return Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix matrice)MatrixMatrix. adjoint()static MatrixMatrix. columnJoin(Matrix mat1, Matrix mat2)Place the first Matrix object side by side with the second one passed as argument to this method.MatrixMatrix. getCofactorMatrix()MatrixMatrix. getColumnMatrix(int column)MatrixMatrixValueParser. getMatrix()MatrixMatrixVariable. getMatrix()MatrixMatrix. getRowMatrix(int row)MatrixMatrix. inverse()Row reduction technique used to compute the inverse of the matrix.MatrixMatrix. minor(int i, int j)static MatrixMatrix. multiply(Matrix matrice1, Matrix matrice2)The operation of matrix multiplication.MatrixMatrix. oldInverse()Computes the inverse of this Matrix object.static MatrixMatrix. pow(Matrix mat, int pow)static MatrixMatrix. power(Matrix mat, int pow)MatrixMatrix. reduceToRowEchelonMatrix()MatrixMatrix. reduceToTriangularMatrix()static MatrixMatrix. rowJoin(Matrix mat1, Matrix mat2)Place the first Matrix object side by side with the second one passed as argument to this method.MatrixMatrix. scalarDivide(double scalar)MatrixMatrix. scalarMultiply(double scalar)MatrixMatrix. solveEquation()Used to solve a system of simultaneous equations placed in this Matrix object.static MatrixMatrix. solveEquation(Matrix matrix)Used to solve a system of simultaneous equations placed in the Matrix object.MatrixMatrix. subtract(Matrix matrice)MatrixMatrix. transpose()MatrixMatrix. unitMatrix()static MatrixMatrix. unitMatrix(int rowSize, int colSize)static MatrixMatrix. unitMatrix(Matrix mat)Methods in math.matrix.expressParser with parameters of type Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix matrice)static MatrixMatrix. columnJoin(Matrix mat1, Matrix mat2)Place the first Matrix object side by side with the second one passed as argument to this method.static java.lang.StringMatrix. findCharacteristicPolynomialForEigenValues(Matrix m)voidMatrix. multiply(Matrix matrice)static MatrixMatrix. multiply(Matrix matrice1, Matrix matrice2)The operation of matrix multiplication.static MatrixMatrix. pow(Matrix mat, int pow)static MatrixMatrix. power(Matrix mat, int pow)static MatrixMatrix. rowJoin(Matrix mat1, Matrix mat2)Place the first Matrix object side by side with the second one passed as argument to this method.voidMatrixVariable. setMatrix(Matrix matrix)static MatrixMatrix. solveEquation(Matrix matrix)Used to solve a system of simultaneous equations placed in the Matrix object.MatrixMatrix. subtract(Matrix matrice)static MatrixMatrix. unitMatrix(Matrix mat)Constructors in math.matrix.expressParser with parameters of type Matrix Constructor Description Matrix(Matrix matrix)MatrixVariable(java.lang.String name, Matrix matrix) -
Uses of Matrix in math.numericalmethods
Methods in math.numericalmethods that return Matrix Modifier and Type Method Description MatrixFunctionExpander. getMatrix() -
Uses of Matrix in parser
Methods in parser that return Matrix Modifier and Type Method Description MatrixSet. addMatrix()The list must have been originally supplied: matrix_add(A,B) {where A and B are matrices} It adds them out and returns the result as a list.MatrixSet. adjoint()The list must have been originally supplied: adjoint(A) {where A is a Matrix} It finds the adjoint of A and returns the result as a list.MatrixFunction. calcInverse()MatrixSet. cofactorMatrix()The list must have been originally supplied: adjoint(A) {where A is a Matrix} It finds the adjoint of A and returns the result as a list.MatrixSet. divideMatrix()The list must have been originally supplied: matrix_div(A,B) {where A and B are matrices} or matrix_div(A,k) {where A is a matrix and k is a scalar} It divides them out and returns the result as a list.MatrixSet. echelon()The input list is such that: The first 2 entries specify the number of rows and columns.MatrixSet. editMatrix()The list must have been originally supplied: transpose(A) {where A is a Matrix} It transposes A and returns the result as a list.MatrixSet. eigenVectors()The list must have been originally supplied: eigvec(A) {where A is a Matrix} It finds the eigenvalues of A and returns the result as a list.MatrixFunction. getMatrix()MatrixSet. invert()static MatrixFunction. listToMatrix(java.util.List<java.lang.String> data)MatrixSet. listToMatrix()The input list is such that: The first 2 entries specify the number of rows and columns.MatrixSet. multiplyMatrix()The list must have been originally supplied: matrix_mul(A,B) {where A and B are matrices} or matrix_mul(A,k) {where A is a matrix and k is a scalar} It multiplies them out and returns the result as a list.MatrixSet. powerMatrix()The list must have been originally supplied: matrix_pow(A,n) {where A is a Matrix and n is an integer.MatrixFunction. reduceToEchelon()MatrixSet. solveSystem()The input list must be an n rows by n+1 columns matrixMatrixSet. subtractMatrix()The list must have been originally supplied: matrix_sub(A,B) {where A and B are matrices} It subtracts them out and returns the result as a list.MatrixSet. transpose()The list must have been originally supplied: transpose(A) {where A is a Matrix} It transposes A and returns the result as a list.MatrixFunction. triangularMatrix()MatrixSet. triMatrix()The input list is such that: The first 2 entries specify the number of rows and columns.Methods in parser with parameters of type Matrix Modifier and Type Method Description static java.lang.StringFunction. matrixToCommaList(Matrix mat)static java.util.List<java.lang.String>Function. matrixToList(Matrix mat)The input list is such that: The first 2 entries specify the number of rows and columns.static java.lang.StringFunction. storeAnonymousMatrixFunction(Matrix matrix)