TMtx *ResizeAndTranspose(TMtx *Src, int NewRows, int NewCols) const;
Resize and transpose.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx * | |
| 2 | NewRows | int | |
| 3 | NewCols | int |
Remarks:
Resizes the calling matrix to NewRows and NewCols and then copies the Src matrix values to the calling matrix. The elements outside the newly created matrix size are not referenced. At the end the method also transposes the calling matrix. All this operations are performed in one single pass.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler