TOpenCLValue.Ln Method

function Ln(const X: TOpenCLValue): TOpenCLValue;

Natural logarithm.

#NameTypeDescription
1XTOpenCLValue

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