Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Matrix ConcatVert(const DewArray<TMtx *> &Src); | Vertically concatenate a list of matrices in to one big matrix. |
| 2 | Matrix ConcatVert(int DestRow, int DestCol, const DewArray<TMtx *> &Src); | Vertically concatenate a list of matrices in to one big matrix. |
Overload 1: Matrix ConcatVert(const DewArray<TMtx *> &Src);
Vertically concatenate a list of matrices in to one big matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | const DewArray<TMtx *> & |
Remarks:
Internally calls Matrix::ConcatVert
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix ConcatVert(int DestRow, int DestCol, const DewArray<TMtx *> &Src);
Vertically concatenate a list of matrices in to one big matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | DestRow | int | |
| 2 | DestCol | int | |
| 3 | Src | const DewArray<TMtx *> & |
Remarks:
Internally calls Matrix::ConcatVert
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler