На странице произошла ошибка #S51. Свяжитесь с вебмастером. PHP 5.6 и PHP 7 на русском: Функция log1p() - Возвращает log(1 + number), рассчитанный таким, что результат точен, даже если значение number близко к нулю

log1p

(PHP 4 >= 4.1.0, PHP 5, PHP 7)

log1p Возвращает log(1 + number), рассчитанный таким, что результат точен, даже если значение number близко к нулю

Описание

float log1p ( float $number )

log1p() возвращает log(1 + number), рассчитанное таким образом, что результат точен, даже когда значение number близко к нулю. Из-за недостатка точности log() в этом случае может вернуть просто log(1).

Список параметров

number

Входное значение

Возвращаемые значения

log(1 + number)

Список изменений

Версия Описание
5.3.0 Теперь функция доступна на всех платформах

Смотрите также

  • expm1() - Возвращает exp(number) - 1, рассчитанное таким образом, что результат точен, даже если number близок к нулю.
  • log() - Натуральный логарифм
  • log10() - Десятичный логарифм

Коментарии

Автор:
Note that the benefit of this function for small argument values is lost if PHP is compiled against a C library that that not have builtin support for the log1p() function.

In this case, log1p() will be compiled by using log() instead, and the precision of the result will be identical to log(1), i.e. it will always be 0 for small numbers.
Sample log1p(1.0e-20):
- returns 0.0 if log1p() is approximated by using log()
- returns something very near from 1.0e-20, if log1p() is supported by the underlying C library.

One way to support log1p() correctly on any platform, so that the magnitude of the expected result is respected:

function log1p($x) {
return ($x>-1.0e-8 && $x<1.0e-8) ? ($x - $x*$x/2) : log(1+$x);
}

If you want better precision, you may use a better limited development, for small positive or negative values of x:

log(1+x) = x - x^2/2 + x^3/3 - ... + (-1)^(n-1)*x^n/n + ...

(This serial sum converges only for values of x in [0 ... 1] inclusive, and the ^ operator in the above formula means the exponentiation operator, not the PHP xor operation)

Note that log1p() is undefined for arguments lower than or equal to -1, and that the implied base of the log function is the Neperian "e" constant.
2002-09-11 05:29:54
http://php5.kiev.ua/manual/ru/function.log1p.html

    Поддержать сайт на родительском проекте КГБ