MatrixInt::ConcatHorz Method

Overload List

#SignatureDescription
1TMtxInt *ConcatHorz(const DewArray<TMtxInt *> &Src) const;Concenates an array of matrices horizontally.
2TMtxInt *ConcatHorz(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src) const;Concenate the Src matrices horizontally and store the results in the calling matrix.

Overload 1: TMtxInt *ConcatHorz(const DewArray<TMtxInt *> &Src) const;

Concenates an array of matrices horizontally.

#NameTypeDescription
1Srcconst DewArray<TMtxInt *> &
Remarks:

Concenate the Src matrices horizontally and store the results in the 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 Rows property does not match.

See Also: MatrixInt::Concat, MatrixInt::ConcatVert
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: TMtxInt *ConcatHorz(int DestRow, int DestCol, const DewArray<TMtxInt *> &Src) const;

Concenate the Src matrices horizontally and store the results in the calling matrix.

#NameTypeDescription
1DestRowint
2DestColint
3Srcconst 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 Complex or Rows properties do not match.

Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler