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