Keil Logo

__log10

概要
double __log10 (
  double val);   /* value to take common logarithm of */
説明

__log10 デバッガ関数は、浮動小数点数 val の常用対数を計算します。対数とは、val と等しくなるまで底(常用対数の場合 10)を乗算しなければならない指数のことです。つまり、以下のようになります。

log10 10x = val

以下に例を示します。

log10(120)
= log10(102 × 1.2)
= 2 + log10(1.2)
≈ 2 + 0.079181 または 2.079181

戻り値

__log10 関数は、val の浮動小数点常用対数を返します。

関連項目

__exp__log

> __log10(1000);
  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.

Change Settings

Privacy Policy Update

Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.