Uses of Class
org.apache.commons.math4.legacy.linear.OpenMapRealMatrix
-
Packages that use OpenMapRealMatrix Package Description org.apache.commons.math4.legacy.linear Linear algebra support. -
-
Uses of OpenMapRealMatrix in org.apache.commons.math4.legacy.linear
Methods in org.apache.commons.math4.legacy.linear that return OpenMapRealMatrix Modifier and Type Method Description OpenMapRealMatrix
OpenMapRealMatrix. add(OpenMapRealMatrix m)
Compute the sum of this matrix andm
.OpenMapRealMatrix
OpenMapRealMatrix. copy()
Returns a (deep) copy of this.OpenMapRealMatrix
OpenMapRealMatrix. createMatrix(int rowDimension, int columnDimension)
Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.OpenMapRealMatrix
OpenMapRealMatrix. multiply(OpenMapRealMatrix m)
Postmultiply this matrix bym
.OpenMapRealMatrix
OpenMapRealMatrix. subtract(OpenMapRealMatrix m)
Subtractm
from this matrix.OpenMapRealMatrix
OpenMapRealMatrix. subtract(RealMatrix m)
Returnsthis
minusm
.Methods in org.apache.commons.math4.legacy.linear with parameters of type OpenMapRealMatrix Modifier and Type Method Description OpenMapRealMatrix
OpenMapRealMatrix. add(OpenMapRealMatrix m)
Compute the sum of this matrix andm
.OpenMapRealMatrix
OpenMapRealMatrix. multiply(OpenMapRealMatrix m)
Postmultiply this matrix bym
.OpenMapRealMatrix
OpenMapRealMatrix. subtract(OpenMapRealMatrix m)
Subtractm
from this matrix.Constructors in org.apache.commons.math4.legacy.linear with parameters of type OpenMapRealMatrix Constructor Description OpenMapRealMatrix(OpenMapRealMatrix matrix)
Build a matrix by copying another one.
-