Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *ConcatVert(const DewArray<TMtxInt *> &Src); | Concenates an array of matrices vertically. |
| 2 | TMtxInt *ConcatVert(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src); | Concenate the Src matrices vertically and store the results in calling matrix. |
Overload 1: TMtxInt *ConcatVert(const DewArray<TMtxInt *> &Src);
Concenates an array of matrices vertically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | const DewArray<TMtxInt *> & |
Remarks:
Concenate the Src matrices vertically and store the results in calling matrix. The TMtxInt::Rows, TMtxInt::Cols and TMtxInt::IntPrecision properties of the calling matrix are adjusted automatically. An exception is raised, if any of the Src matrices IntPrecision or Cols properties do not match.
See Also: TMtxInt::Concat, TMtxInt::ConcatHorz
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *ConcatVert(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src);
Concenate the Src matrices vertically and store the results in calling matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | DestRow | int | |
| 2 | DestCol | int | |
| 3 | Src | const DewArray<TMtxInt *> & |
Remarks:
The DestRow and DestCol parameters indicate the starting position (in the calling matrix) for concatenating. An exception is raised, if the calling matrix array bounds are overrun. An exception is raised, if any of the Src matrices IntPrecision or Cols properties do not match.
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler