★ wanayoo — archive 1999 http://fr.php.net/manual/hu/function.expm1.phpNouvelle recherche | Portail wanayoo
PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<expfloor>
view the version of this page
Last updated: Fri, 18 Feb 2005

expm1

(PHP 4 >= 4.1.0, PHP 5)

expm1 --  exp(number) - 1 pontos értéke, még ha a number 0-hoz közeli értékű is

Leírás

float expm1 ( float number )

Figyelem

Ez a függvény KÍSÉRLETI JELLEGGEL MŰKÖDIK. A függvény működése, neve, bármi amit a függévénnyel kapcsolatban dokumentáltunk megváltozhat egy későbbi PHP kiadásban minden figyelmeztetés nélkül. Ezt a függvényt csak a saját felelősségedre használd!

Figyelem

Ez a függvény jelenleg nincs dokumentálva, csak a paraméterek listája található itt.

Megjegyzés: Ez a függvény nem működik Windows operációs rendszereken!



add a note add a note User Contributed Notes
expm1
hagen at von-eitzen dot de
24-Feb-2003 12: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:

function expm1($x) {
     return ($x>-1.0e-6 && $x<1.0e-6) ? ($x + $x*$x/2) : (exp($x)-1);
}

<expfloor>
 Last updated: Fri, 18 Feb 2005
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This mirror generously provided by: nexen.net
Last updated: Fri Feb 18 05:12:01 2005 CET