Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec *Concat(const DewArray<TVec *> &Src) const; | Concatenates an array of TVec objects. |
| 2 | TVec *Concat(int Index, const DewArray<TVec *> &Src) const; | Copies the contents of all TVec objects from the Src array to the calling vector elements, starting with at Index. |
Overload 1: TVec *Concat(const DewArray<TVec *> &Src) const;
Concatenates an array of TVec objects.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | const DewArray<TVec *> & |
Remarks:
Concatenates an array of TVec objects. The method copies the contents of all TVec objects from the Src array to the calling object. The Vector::Length and Vector::Complex properties of the calling vector are set implicitly. An exception is raised, if Complex properties of TVec objects do not match.
See Also: Vector::Split, Vector::Copy
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TVec *Concat(int Index, const DewArray<TVec *> &Src) const;
Copies the contents of all TVec objects from the Src array to the calling vector elements, starting with at Index.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Src | const DewArray<TVec *> & |
Remarks:
The Vector::Length and Vector::Complex properties of the calling vector must be set explicitly. An exception is raised, if Complex properties of TVec objects do not match or if the sum of Length's exceeds the Length property of the calling object.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler