関数intlog マニュアル

(The documentation of function intlog)

Last Update: 2023/6/27


◆機能・用途(Purpose)

整数の対数を計算する。
Compute the logarithm of an integer.


◆形式(Format)

#include <intmath.h>
inline int intlog(const int m,const int n)


◆引数(Arguments)

m 対数の底。
The base of the logarithm.
n 対数を取る整数。
An integer whose logarithm is to be computed.


◆戻り値(Return value)

\(m^l\leq n\)かつ\(m^{l+1}>n\)を満たす整数\(l\)。
An integer \(l\) that satisfies \(m^l\leq n\) and \(m^{l+1}>n\).


◆使用例(Example)

int i=intlog(3,9);

この例では\(i=2\)となる。
This example gives \(i=2\).