Math 函数
在线手册:中文 英文
PHP手册

expm1

(PHP 4 >= 4.1.0, PHP 5)

expm1 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果

说明

float expm1 ( float $number )

expm1() 返回 'exp(number) - 1',甚至当 number 的值接近零也能计算出准确结果。但是当两个数值趋近于相等的时候, 'exp (number) - 1' 就会变得不太准确。

参见 log1p()exp()

参数

arg

The argument to process

返回值

'e' to the power of arg minus one

更新日志

版本 说明
5.3.0 This function is now available on all platforms

参见


Math 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果

用户评论:

brettz9 AAT yah (03-Apr-2009 04:07)

Note that exp(x)-1 can be approximated by x + x^2/2! + ... + x^n/n!  and for any value

hagen at von-eitzen dot de (24-Feb-2003 11:57)

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);
}
?>