Uses of Class
org.hipparchus.linear.BlockFieldMatrix
-
Packages that use BlockFieldMatrix Package Description org.hipparchus.linear Linear algebra support. -
-
Uses of BlockFieldMatrix in org.hipparchus.linear
Methods in org.hipparchus.linear that return BlockFieldMatrix Modifier and Type Method Description BlockFieldMatrix<T>
BlockFieldMatrix. add(BlockFieldMatrix<T> m)
Compute the sum ofthis
andm
.BlockFieldMatrix<T>
BlockFieldMatrix. multiply(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym
.BlockFieldMatrix<T>
BlockFieldMatrix. multiplyTransposed(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym^T
.BlockFieldMatrix<T>
BlockFieldMatrix. multiplyTransposed(FieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym^T
.BlockFieldMatrix<T>
BlockFieldMatrix. subtract(BlockFieldMatrix<T> m)
Computethis - m
.BlockFieldMatrix<T>
BlockFieldMatrix. transposeMultiply(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis^T
bym
.BlockFieldMatrix<T>
BlockFieldMatrix. transposeMultiply(FieldMatrix<T> m)
Returns the result of postmultiplyingthis^T
bym
.Methods in org.hipparchus.linear with parameters of type BlockFieldMatrix Modifier and Type Method Description BlockFieldMatrix<T>
BlockFieldMatrix. add(BlockFieldMatrix<T> m)
Compute the sum ofthis
andm
.BlockFieldMatrix<T>
BlockFieldMatrix. multiply(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym
.BlockFieldMatrix<T>
BlockFieldMatrix. multiplyTransposed(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis
bym^T
.void
BlockFieldMatrix. setRowMatrix(int row, BlockFieldMatrix<T> matrix)
Sets the entries in row numberrow
as a row matrix.BlockFieldMatrix<T>
BlockFieldMatrix. subtract(BlockFieldMatrix<T> m)
Computethis - m
.BlockFieldMatrix<T>
BlockFieldMatrix. transposeMultiply(BlockFieldMatrix<T> m)
Returns the result of postmultiplyingthis^T
bym
.
-