Vector.Integrate Method

Overload List

#SignatureDescription
1TVec Integrate(TVec Init)Integrate calling vector values.
2TVec Integrate(TVec Vec, TVec Init)Integrate all Vec elements using initial values in Init and store the results in calling vector.

Overload 1: TVec Integrate(TVec Init)

Integrate calling vector values.

#NameDescription
1InitDefinies 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 Init)

Integrate all Vec elements using initial values in Init and store the results in calling vector.

#NameTypeDescription
1VecTVecsource TVec
2InitTVecsource TVec

Result: stored in self (calling object), returns self for chaining

Remarks:

Dew.Math.Vector.Length and Dew.Math.Vector.Complex properties of the calling vector are set implicitly the size and type of the result.