clValue.Exp Method

function Exp(const X: TOpenCLValue): TOpenCLValue;

Exponent (e^).

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the exponent e^X.

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