 | µVision User's Guide legacy |  |
|
|
| __log10| Summary |
double __log10 (
double val); /* value to take common logarithm of */
| | Description | The __log10 debugger function calculates the common logarithm for the floating-point number val. The logarithm is the exponent to which the base (10 in the case of common logs) must be raised to equal val. Or, log10 10x = val For example, log10(120) = log10(102 × 1.2) = 2 + log10(1.2) ≈ 2 + 0.079181 or 2.079181
| | Return Value | The __log10 function returns the floating-point common logarithm of val. | | See Also | __exp, __log | | Example |
> __log10(1000);
|
|
|