| Package | Description |
|---|---|
| fr.cnes.sirius.patrius.math.linear |
| Modifier and Type | Method and Description |
|---|---|
DiagonalMatrix |
DiagonalMatrix.add(DiagonalMatrix m)
Compute the sum of
this and m. |
DiagonalMatrix |
DiagonalMatrix.copy()
Returns a (deep) copy of this.
|
DiagonalMatrix |
DiagonalMatrix.createMatrix(int rowDimension,
int columnDimension)
Create a new RealMatrix of the same type as the instance with the
supplied
row and column dimensions.
|
DiagonalMatrix |
DiagonalMatrix.getInverse()
Optimized method for
DiagonalMatrix matrix. |
DiagonalMatrix |
DiagonalMatrix.getInverse(Decomposition decomposition)
Optimized method for
DiagonalMatrix matrix. |
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m)
Returns the result of postmultiplying this × m.
|
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m,
boolean toTranspose)
Returns the result of postmultiplying this × m (independently from the
toTranspose
parameter value as we use diagonal matrix). |
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m,
boolean toTranspose,
double d)
Returns the result of postmultiplying d × this × m (independently from the
toTranspose parameter value as we use diagonal matrix). |
DiagonalMatrix |
DiagonalMatrix.permutation(int[] index)
Permute the rows/columns of this matrix according to a new specified index order list.
|
DiagonalMatrix |
DiagonalMatrix.power(int p)
Returns the result of multiplying
this with itself p times. |
DiagonalMatrix |
DiagonalMatrix.scalarMultiply(double d)
Returns the result of multiplying each entry of
this by d. |
DiagonalMatrix |
DiagonalMatrix.subtract(DiagonalMatrix m)
Returns
this minus m. |
DiagonalMatrix |
DiagonalMatrix.transpose()
Returns the transpose of this matrix.
|
| Modifier and Type | Method and Description |
|---|---|
DiagonalMatrix |
DiagonalMatrix.add(DiagonalMatrix m)
Compute the sum of
this and m. |
ArrayRowSymmetricMatrix |
ArrayRowSymmetricMatrix.add(DiagonalMatrix m)
Compute the sum of this and
m. |
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m)
Returns the result of postmultiplying this × m.
|
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m,
boolean toTranspose)
Returns the result of postmultiplying this × m (independently from the
toTranspose
parameter value as we use diagonal matrix). |
RealMatrix |
AbstractRealMatrix.multiply(DiagonalMatrix m,
boolean toTranspose,
double d)
Returns the result of postmultiplying d × this × m (independently from the
toTranspose parameter value as we use diagonal matrix). |
DiagonalMatrix |
DiagonalMatrix.multiply(DiagonalMatrix m,
boolean toTranspose,
double d)
Returns the result of postmultiplying d × this × m (independently from the
toTranspose parameter value as we use diagonal matrix). |
DiagonalMatrix |
DiagonalMatrix.subtract(DiagonalMatrix m)
Returns
this minus m. |
ArrayRowSymmetricMatrix |
ArrayRowSymmetricMatrix.subtract(DiagonalMatrix m)
Compute this minus
m. |
Copyright © 2021 CNES. All rights reserved.