MtxExpr::Concat Function

Overload List

#SignatureDescription
1Vector Concat(const DewArray<TVec *> &Src);Concatenates multiple Vectors in to a single one.
2Vector Concat(TMtxVec *X1, TMtxVec *X2);Concatenates multiple Vectors in to a single one.
3Matrix 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.

#NameTypeDescription
1Srcconst 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.

#NameTypeDescription
1X1TMtxVec *
2X2TMtxVec *
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.

#NameTypeDescription
1ARowsint
2AColsint
3Srcconst DewArray<TMtx *> &
Remarks:

Internally calls Matrix::Concat

Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler