Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *Adjung() const; | Adjungate matrix. |
| 2 | TMtx *Adjung(TMtx *X) const; | Calculate the adjungate to X matrix and store the results in calling matrix. |
Overload 1: TMtx *Adjung() const;
Adjungate matrix.
Remarks:
Calculate the adjungate matrix in-place. Adjungation is equal to transpose and conjugate.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtx *Adjung(TMtx *X) const;
Calculate the adjungate to X matrix and store the results in calling matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx * |
Remarks:
The Matrix::Rows, Matrix::Cols and Matrix::Complex properties of the calling matrix are set implicitly to match those of X matrix.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler