function Exp(const X: TOpenCLValue): TOpenCLValue;
Exponent (e^).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
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