«

PHP:log1p()的用法

时间:2024-3-1 21:58     作者:韩俊     分类: PHP


log1p

(PHP 4 >= 4.1.0, PHP 5)

log1p — 返回 log(1 + number),甚至当 number 的值接近零也能计算出准确结果

说明

  float <strong>log1p</strong>
   ( float <code>$number</code>
  )
<p>
 <strong>log1p()</strong> 返回 log(1 + <code>number</code>),甚至当
 <code>number</code> 的值接近零也能计算出准确结果。
 log() might only return log(1) in this case

due to lack of precision.

参数

number

要处理的参数

返回值

log(1 + number)

更新日志

版本 说明 5.3.0 此函数在所有平台上均可用

参见

expm1() - 返回 exp(number) - 1,甚至当 number 的值接近零也能计算出准确结果 log() - 自然对数 log10() - 以 10 为底的对数

标签: php php教程

热门推荐