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