Uses of Class
org.hipparchus.linear.BlockRealMatrix
Packages that use BlockRealMatrix
-
Uses of BlockRealMatrix in org.hipparchus.linear
Methods in org.hipparchus.linear that return BlockRealMatrixModifier and TypeMethodDescriptionBlockRealMatrix.add(BlockRealMatrix m) Compute the sum of this matrix andm.BlockRealMatrix.add(RealMatrix m) Returns the sum ofthisandm.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 postmultiplyingthisbym.BlockRealMatrix.multiplyTransposed(BlockRealMatrix m) Returns the result of postmultiplyingthisbym^T.BlockRealMatrix.multiplyTransposed(RealMatrix m) Returns the result of postmultiplyingthisbym^T.BlockRealMatrix.scalarAdd(double d) Returns the result of addingdto each entry ofthis.BlockRealMatrix.subtract(BlockRealMatrix m) Subtractmfrom this matrix.BlockRealMatrix.subtract(RealMatrix m) Returnsthisminusm.BlockRealMatrix.transpose()Returns the transpose of this matrix.BlockRealMatrix.transposeMultiply(BlockRealMatrix m) Returns the result of postmultiplyingthis^Tbym.BlockRealMatrix.transposeMultiply(RealMatrix m) Returns the result of postmultiplyingthis^Tbym.Methods in org.hipparchus.linear with parameters of type BlockRealMatrixModifier 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 postmultiplyingthisbym^T.voidBlockRealMatrix.setRowMatrix(int row, BlockRealMatrix matrix) Sets the entries in row numberrowas a row matrix.BlockRealMatrix.subtract(BlockRealMatrix m) Subtractmfrom this matrix.BlockRealMatrix.transposeMultiply(BlockRealMatrix m) Returns the result of postmultiplyingthis^Tbym.