Uses of Class
org.apache.commons.math.linear.OpenMapRealMatrix
-
Packages that use OpenMapRealMatrix Package Description org.apache.commons.math.linear Linear algebra support. -
-
Uses of OpenMapRealMatrix in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that return OpenMapRealMatrix Modifier and Type Method Description OpenMapRealMatrix
OpenMapRealMatrix. add(OpenMapRealMatrix m)
Compute the sum of this andm
.OpenMapRealMatrix
OpenMapRealMatrix. add(RealMatrix m)
Compute the sum of this and m.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)
Returns the result of postmultiplying this by m.OpenMapRealMatrix
OpenMapRealMatrix. subtract(OpenMapRealMatrix m)
Compute this minusm
.OpenMapRealMatrix
OpenMapRealMatrix. subtract(RealMatrix m)
Compute this minus m.Methods in org.apache.commons.math.linear with parameters of type OpenMapRealMatrix Modifier and Type Method Description OpenMapRealMatrix
OpenMapRealMatrix. add(OpenMapRealMatrix m)
Compute the sum of this andm
.OpenMapRealMatrix
OpenMapRealMatrix. multiply(OpenMapRealMatrix m)
Returns the result of postmultiplying this by m.OpenMapRealMatrix
OpenMapRealMatrix. subtract(OpenMapRealMatrix m)
Compute this minusm
.Constructors in org.apache.commons.math.linear with parameters of type OpenMapRealMatrix Constructor Description OpenMapRealMatrix(OpenMapRealMatrix matrix)
Build a matrix by copying another one.
-