TOpenCLValue LogN(Double N, TOpenCLValue X)
Log base N.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | N | Double | scalar |
| 2 | X | TOpenCLValue | source TOpenCLValue |
Returns: TOpenCLValue - Computes Log with base N.
Examples
clValue a;
clValue b;
b.Copy(2.3);
a.LogN(4, b); // // a = LogN(4, 2.3)
See Also: clValue.Power