Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec *Integrate(TVec *Init) const; | Integrate calling vector values. |
| 2 | TVec *Integrate(TVec *Vec, TVec *Init) const; | Integrate all Vec elements using initial values in Init and store the results in calling vector. |
Overload 1: TVec *Integrate(TVec *Init) const;
Integrate calling vector values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Init | TVec * | Definies initial values for integration. Size of Init vector determines how many times calling vector values will be integrated. |
Remarks:
Perform d-times integration of calling vector values, where d is equal to Init length.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TVec *Integrate(TVec *Vec, TVec *Init) const;
Integrate all Vec elements using initial values in Init and store the results in calling vector.
Remarks:
Vector::Length and Vector::Complex properties of the calling vector are set implicitly the size and type of the result.
Declared in Dew::Math::Vector · Dew.Math/MtxExpr.h · Cross-compiler