Keil Logo Arm Logo

µVision4 User's Guide

__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);

Keil logo

Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.