Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *CumProduct(double Value, int Index, int Len) const; | Calculate the cumulative product for all Vec elements. |
| 2 | TMtxVec *CumProduct(const TCplx &Value, int Index, int Len) const; | Calculate the cumulative product for all Vec elements. |
Overload 1: TMtxVec *CumProduct(double Value, int Index, int Len) const;
Calculate the cumulative product for all Vec elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | double | |
| 2 | Index | int | |
| 3 | Len | int |
Remarks:
The size must be set by the user. The function will store all powers of Value:
Values[Index + i] := IntPower(Value, i)
at corresponding array Index
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: TMtxVec *CumProduct(const TCplx &Value, int Index, int Len) const;
Calculate the cumulative product for all Vec elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |
Remarks:
The size must be set by the user. The function will store all powers of Value:
CValues[Index + i] := IntPower(Value, i)
at corresponding array Index
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler