Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec Integrate(TVec aInit) | Integrate calling vector values. |
| 2 | TVec Integrate(TVec Vec, TVec aInit) | Integrate all Vec elements using initial values in Init. |
Overload 1: TVec Integrate(TVec aInit)
Integrate calling vector values.
| # | Name | Description |
|---|---|---|
| 1 | aInit | Definies initial values for integration. Size of Init vector determines how many times calling vector values will be integrated. |
Result: stored in self (calling object), returns self for chaining
Remarks:
Perform d-times integration of calling vector values, where d is equal to Init length.
Overload 2: TVec Integrate(TVec Vec, TVec aInit)
Integrate all Vec elements using initial values in Init.
Result: stored in self (calling object), returns self for chaining
Remarks:
Store the results in calling vector. Dew.Math.TMtxVecBase.Length and Dew.Math.TMtxVec.Complex properties of the calling vector are set implicitly the size and type of the result.