function Exp10(const X: TOpenCLValue): TOpenCLValue;
Exponent base 10 (10^X).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the exponent base 10 (10^X).
Examples
var a,b: clValue;
begin
b.Copy(8);
a.Exp10(b);
end;
See Also: clValue.Log10