Uses of Class
org.hipparchus.linear.BlockRealMatrix
-
Uses of BlockRealMatrix in org.hipparchus.linear
Modifier and TypeMethodDescriptionBlockRealMatrix.add
(BlockRealMatrix m) Compute the sum of this matrix andm
.BlockRealMatrix.add
(RealMatrix m) Returns the sum ofthis
andm
.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) Get the entries at the given column index as a column matrix.BlockRealMatrix.getRowMatrix
(int row) Get the entries at the given row index 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 bym
.BlockRealMatrix.multiply
(RealMatrix m) Returns the result of postmultiplyingthis
bym
.BlockRealMatrix.multiplyTransposed
(BlockRealMatrix m) Returns the result of postmultiplyingthis
bym^T
.BlockRealMatrix.multiplyTransposed
(RealMatrix m) Returns the result of postmultiplyingthis
bym^T
.BlockRealMatrix.scalarAdd
(double d) Returns the result of addingd
to each entry ofthis
.BlockRealMatrix.subtract
(BlockRealMatrix m) Subtractm
from this matrix.BlockRealMatrix.subtract
(RealMatrix m) Returnsthis
minusm
.BlockRealMatrix.transpose()
Returns the transpose of this matrix.BlockRealMatrix.transposeMultiply
(BlockRealMatrix m) Returns the result of postmultiplyingthis^T
bym
.BlockRealMatrix.transposeMultiply
(RealMatrix m) Returns the result of postmultiplyingthis^T
bym
.Modifier and TypeMethodDescriptionBlockRealMatrix.add
(BlockRealMatrix m) Compute the sum of this matrix andm
.BlockRealMatrix.multiply
(BlockRealMatrix m) Returns the result of postmultiplying this bym
.BlockRealMatrix.multiplyTransposed
(BlockRealMatrix m) Returns the result of postmultiplyingthis
bym^T
.void
BlockRealMatrix.setRowMatrix
(int row, BlockRealMatrix matrix) Sets the entries in row numberrow
as a row matrix.BlockRealMatrix.subtract
(BlockRealMatrix m) Subtractm
from this matrix.BlockRealMatrix.transposeMultiply
(BlockRealMatrix m) Returns the result of postmultiplyingthis^T
bym
.