Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector Concat(const DewArray<TVec *> &Src); | Concatenates multiple Vectors in to a single one. |
| 2 | Vector Concat(TMtxVec *X1, TMtxVec *X2); | Concatenates multiple Vectors in to a single one. |
| 3 | Matrix Concat(int ARows, int ACols, const DewArray<TMtx *> &Src); | Concatenate a list of matrices in to one big matrix. |
Overload 1: Vector Concat(const DewArray<TVec *> &Src);
Concatenates multiple Vectors in to a single one.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | const DewArray<TVec *> & |
Remarks:
Internally calls Vector::Concat
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Vector Concat(TMtxVec *X1, TMtxVec *X2);
Concatenates multiple Vectors in to a single one.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X1 | TMtxVec * | |
| 2 | X2 | TMtxVec * |
Remarks:
Internally calls Vector::Concat
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Matrix Concat(int ARows, int ACols, const DewArray<TMtx *> &Src);
Concatenate a list of matrices in to one big matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ARows | int | |
| 2 | ACols | int | |
| 3 | Src | const DewArray<TMtx *> & |
Remarks:
Internally calls Matrix::Concat
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler