function Log10(const X: TOpenCLValue): TOpenCLValue;
Log base 10.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
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