clValue.Log10 Method

function Log10(const X: TOpenCLValue): TOpenCLValue;

Log base 10.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the log base 10 of X.

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