Uses of Class
org.apache.commons.math4.linear.BlockRealMatrix
| Package | Description |
|---|---|
| org.apache.commons.math4.linear |
Linear algebra support.
|
-
Uses of BlockRealMatrix in org.apache.commons.math4.linear
Methods in org.apache.commons.math4.linear that return BlockRealMatrix Modifier and Type Method Description BlockRealMatrixBlockRealMatrix. add(BlockRealMatrix m)Compute the sum of this matrix andm.BlockRealMatrixBlockRealMatrix. add(RealMatrix m)Returns the sum ofthisandm.BlockRealMatrixBlockRealMatrix. copy()Returns a (deep) copy of this.BlockRealMatrixBlockRealMatrix. createMatrix(int rowDimension, int columnDimension)Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.BlockRealMatrixBlockRealMatrix. getColumnMatrix(int column)Get the entries at the given column index as a column matrix.BlockRealMatrixBlockRealMatrix. getRowMatrix(int row)Get the entries at the given row index as a row matrix.BlockRealMatrixBlockRealMatrix. getSubMatrix(int startRow, int endRow, int startColumn, int endColumn)Gets a submatrix.BlockRealMatrixBlockRealMatrix. multiply(BlockRealMatrix m)Returns the result of postmultiplying this bym.BlockRealMatrixBlockRealMatrix. multiply(RealMatrix m)Returns the result of postmultiplyingthisbym.BlockRealMatrixBlockRealMatrix. scalarAdd(double d)Returns the result of addingdto each entry ofthis.BlockRealMatrixBlockRealMatrix. subtract(BlockRealMatrix m)Subtractmfrom this matrix.BlockRealMatrixBlockRealMatrix. subtract(RealMatrix m)Returnsthisminusm.BlockRealMatrixBlockRealMatrix. transpose()Returns the transpose of this matrix.Methods in org.apache.commons.math4.linear with parameters of type BlockRealMatrix Modifier and Type Method Description BlockRealMatrixBlockRealMatrix. add(BlockRealMatrix m)Compute the sum of this matrix andm.BlockRealMatrixBlockRealMatrix. multiply(BlockRealMatrix m)Returns the result of postmultiplying this bym.voidBlockRealMatrix. setRowMatrix(int row, BlockRealMatrix matrix)Sets the entries in row numberrowas a row matrix.BlockRealMatrixBlockRealMatrix. subtract(BlockRealMatrix m)Subtractmfrom this matrix.