TOpenCLValue.Exp Method

function Exp(const X: TOpenCLValue): TOpenCLValue;

Exponent (e^).

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the exponent (e^) of X.

Examples
var a,b: clValue;
begin
    b.Copy(8);
    a.Exp(b);
end;
See Also: TOpenCLValue.Ln