TMtxInt::ConcatVert Method

Overload List

#SignatureDescription
1TMtxInt *ConcatVert(const DewArray<TMtxInt *> &Src);Concenates an array of matrices vertically.
2TMtxInt *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.

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

#NameTypeDescription
1DestRowint
2DestColint
3Srcconst 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