clValue.Exp10 Method

function Exp10(const X: TOpenCLValue): TOpenCLValue;

Exponent base 10 (10^X).

#NameTypeDescription
1XTOpenCLValue

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