TOpenCLValue Log10(TOpenCLValue X)
Log base 10.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the log base 10 of X.
Examples
clValue a;
clValue b;
b.Copy(8);
a.Log10(b);
See Also: clValue.Exp10