log(float)

浮動小数値の常用対数を計算する。

float log(
    float fValue
);

Parameters

fValue

常用対数を求めたい浮動小数値


Description

fValueの常用対数を求め計算結果を返す。

対数は目に見える光エネルギー、電磁気のフィールド力、音の強さのなどのような可変的な量の認知レベルを描写するために使われる指数である。



Remarks

対数は、矢の飛行を計算したり、はるか遠くの音を聞いたりするなどに使われる。


Version

1.26

Example

float foo = log(32.0); 

See Also

functions: pow | sqrt
categories: Math Functions


author: Charles Feduke, editor: Tom Cassiotis, additional contributor(s): Honour Mai, JP team: ngtaicho
Send comments on this topic.