PHP asinh()
La fonction asinh() est une fonction intégrée en PHP qui renvoie le sinus hyperbolique inverse d’un nombre.
Syntaxe
asinh(nbr)
Paramètres
- nbr(Obligatoire) : Spécifie un nombre.
Valeur de retour
La fonction renvoie le sinus hyperbolique inverse du nombre.
Version PHP:
4.1+
Exemple :
<?php echo(asinh(0)); // 0 echo(asinh(100)); // 5.2983423656106 echo(asinh(4.2)); // 2.1421119082369 ?>