Uses of Class
org.hortonmachine.gears.utils.math.matrixes.Matrix
-
Packages that use Matrix Package Description org.hortonmachine.gears.utils.math.matrixes -
-
Uses of Matrix in org.hortonmachine.gears.utils.math.matrixes
Subclasses of Matrix in org.hortonmachine.gears.utils.math.matrixes Modifier and Type Class Description classColumnVectorFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald Mak A column vector.classIdentityMatrixFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald MakclassInvertibleMatrixFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald Mak A matrix that can be inverted.classLinearSystemFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald Mak Solve a system of linear equations using LU decomposition.classRowVectorFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald MakclassSquareMatrixFrom: Java Number Cruncher The Java Programmer's Guide to Numerical Computation by Ronald Mak A square matrix.Methods in org.hortonmachine.gears.utils.math.matrixes that return Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix m)Add another matrix to this matrix.MatrixMatrix. multiply(double k)Multiply this matrix by a constant.MatrixMatrix. multiply(Matrix m)Multiply this matrix by another matrix.MatrixMatrix. subtract(Matrix m)Subtract another matrix from this matrix.MatrixMatrix. transpose()Return the transpose of this matrix.Methods in org.hortonmachine.gears.utils.math.matrixes with parameters of type Matrix Modifier and Type Method Description MatrixMatrix. add(Matrix m)Add another matrix to this matrix.MatrixMatrix. multiply(Matrix m)Multiply this matrix by another matrix.MatrixMatrix. subtract(Matrix m)Subtract another matrix from this matrix.
-