Note that exp(x)-1 can be approximated by x + x^2/2! + ... + x^n/n! and for any value
(PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8)
expm1 — 値がゼロに近い時にでも精度を保つために exp(number) - 1 を返す
expm1() は、
exp($
の値を返します。
num
) - 1num
がゼロに近く、
exp($
が引き算時の桁落ちのために
不正確となるような場合でも正確な値が計算できる方法を使用します。
num
) - 1
num
処理する引数。
e
の num
乗から 1 を引いた値を返します。
Note that exp(x)-1 can be approximated by x + x^2/2! + ... + x^n/n! and for any value
Compare this to log1p (which is its inverse).
Also, You may have to use a similar workaraound in case the underlying C library
does not support expm1:
<?php
function expm1($x) {
return ($x>-1.0e-6 && $x<1.0e-6) ? ($x + $x*$x/2) : (exp($x)-1);
}
?>