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. |
| 3 | TMtxVec *CumProduct(double Value) const; | Calculate the cumulative product for all Vec elements. |
| 4 | TMtxVec *CumProduct(const TCplx &Value) 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 |
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
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 |
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
Overload 3: TMtxVec *CumProduct(double Value) const;
Calculate the cumulative product for all Vec elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | double |
The size must be set by the user. The function will store all powers of Value in
Values[i] := IntPower(Value, i)
at corresponding array index.
Overload 4: TMtxVec *CumProduct(const TCplx &Value) const;
Calculate the cumulative product for all Vec elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & |
The size must be set by the user. The function will store all powers of Value in
CValues[i] := IntPower(Value, i)
at corresponding array index.