Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *ConcatVert(const DewArray<TMtxInt *> &Src) const; | Concenates an array of matrices vertically. |
| 2 | TMtxInt *ConcatVert(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src) const; | Concenate the Src matrices vertically and store the results in calling matrix. |
Overload 1: TMtxInt *ConcatVert(const DewArray<TMtxInt *> &Src) const;
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 MatrixInt::Rows, MatrixInt::Cols and TMtxVecInt::IntPrecision properties of the calling matrix are adjusted automatically. An exception is raised, if any of the Src matrices Complex or Cols properties do not match.
See Also: MatrixInt::Concat, MatrixInt::ConcatHorz
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxInt *ConcatVert(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src) const;
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 Complex or Cols properties do not match.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler