Uses of Class
org.apache.commons.math.linear.BlockRealMatrix
Packages that use BlockRealMatrix
-
Uses of BlockRealMatrix in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that return BlockRealMatrixModifier and TypeMethodDescriptionBlockRealMatrix.add
(BlockRealMatrix m) Compute the sum of this andm
.BlockRealMatrix.add
(RealMatrix m) Compute the sum of this and m.BlockRealMatrix.copy()
Returns a (deep) copy of this.BlockRealMatrix.createMatrix
(int rowDimension, int columnDimension) Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.BlockRealMatrix.getColumnMatrix
(int column) Returns the entries in column numbercolumn
as a column matrix.BlockRealMatrix.getRowMatrix
(int row) Returns the entries in row numberrow
as a row matrix.BlockRealMatrix.getSubMatrix
(int startRow, int endRow, int startColumn, int endColumn) Gets a submatrix.BlockRealMatrix.multiply
(BlockRealMatrix m) Returns the result of postmultiplying this by m.BlockRealMatrix.multiply
(RealMatrix m) Returns the result of postmultiplying this by m.BlockRealMatrix.scalarAdd
(double d) Returns the result of adding d to each entry of this.BlockRealMatrix.subtract
(BlockRealMatrix m) Compute this minusm
.BlockRealMatrix.subtract
(RealMatrix m) Compute this minus m.BlockRealMatrix.transpose()
Returns the transpose of this matrix.Methods in org.apache.commons.math.linear with parameters of type BlockRealMatrixModifier and TypeMethodDescriptionBlockRealMatrix.add
(BlockRealMatrix m) Compute the sum of this andm
.BlockRealMatrix.multiply
(BlockRealMatrix m) Returns the result of postmultiplying this by m.void
BlockRealMatrix.setRowMatrix
(int row, BlockRealMatrix matrix) Sets the entries in row numberrow
as a row matrix.BlockRealMatrix.subtract
(BlockRealMatrix m) Compute this minusm
.