function Ln(const X: TOpenCLValue): TOpenCLValue;
Natural logarithm.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the natural log of X.
Examples
var a,b: clValue;
begin
b.Copy(8);
a.Ln(b);
end;
See Also: TOpenCLValue.Exp