Package | Description |
---|---|
fr.cnes.sirius.patrius.math.linear |
Modifier and Type | Method and Description |
---|---|
BlockRealMatrix |
BlockRealMatrix.add(BlockRealMatrix m)
Compute the sum of this matrix and
m . |
BlockRealMatrix |
BlockRealMatrix.add(RealMatrix m)
Returns the sum of
this and m . |
BlockRealMatrix |
BlockRealMatrix.copy()
Returns a (deep) copy of this.
|
BlockRealMatrix |
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 |
BlockRealMatrix.getColumnMatrix(int column)
Get the entries at the given column index as a column matrix.
|
BlockRealMatrix |
BlockRealMatrix.getRowMatrix(int row)
Get the entries at the given row index as a row matrix.
|
BlockRealMatrix |
BlockRealMatrix.getSubMatrix(int startRow,
int endRow,
int startColumn,
int endColumn)
Gets a submatrix.
|
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m)
Returns the result of postmultiplying
this by m . |
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m,
boolean toTranspose)
Returns the result of postmultiplying this × m (if
toTranspose = false )
or this × mT (if toTranspose = true ) |
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m,
boolean toTranspose,
double d)
Returns the result of postmultiplying d × this × m (if
toTranspose = false
) or d × this × mT (if toTranspose = true ) |
BlockRealMatrix |
BlockRealMatrix.scalarAdd(double d)
Returns the result of adding
d to each entry of this . |
BlockRealMatrix |
BlockRealMatrix.scalarMultiply(double d)
Returns the result of multiplying each entry of
this by d . |
BlockRealMatrix |
BlockRealMatrix.subtract(BlockRealMatrix m)
Subtract
m from this matrix. |
BlockRealMatrix |
BlockRealMatrix.subtract(RealMatrix m)
Returns
this minus m . |
BlockRealMatrix |
BlockRealMatrix.transpose()
Returns the transpose of this matrix.
|
Modifier and Type | Method and Description |
---|---|
BlockRealMatrix |
BlockRealMatrix.add(BlockRealMatrix m)
Compute the sum of this matrix and
m . |
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m)
Returns the result of postmultiplying
this by m . |
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m,
boolean toTranspose)
Returns the result of postmultiplying this × m (if
toTranspose = false )
or this × mT (if toTranspose = true ) |
BlockRealMatrix |
BlockRealMatrix.multiply(BlockRealMatrix m,
boolean toTranspose,
double d)
Returns the result of postmultiplying d × this × m (if
toTranspose = false
) or d × this × mT (if toTranspose = true ) |
void |
BlockRealMatrix.setColumnMatrix(int column,
BlockRealMatrix matrix)
Sets the entries in column number
column as a column matrix. |
void |
BlockRealMatrix.setRowMatrix(int row,
BlockRealMatrix matrix)
Sets the entries in row number
row as a row matrix. |
BlockRealMatrix |
BlockRealMatrix.subtract(BlockRealMatrix m)
Subtract
m from this matrix. |
Copyright © 2020 CNES. All rights reserved.