PHP atanh()
La fonction atanh() est une fonction intégrée en PHP qui renvoie la tangente hyperbolique inverse d’un nombre.
Syntaxe
atanh(nbr)
Paramètres
- nbr(Obligatoire) : Spécifie un nombre.
Valeur de retour
La fonction renvoie la tangente hyperbolique d’un nombre.
Version PHP:
4.1+
Exemple :
<?php echo(atanh(0)); // 0 echo(atanh(0.22)); // 0.22365610902183 echo(atanh(1)); // INF echo(atanh(-2)); // NAN ?>