Exemple
Retour la tangente hyperbolique de différents nombres:
<?php
echo(tanh(M_PI_4) . "<br>");
echo(tanh(0.50) . "<br>");
echo(tanh(-0.50) . "<br>");
echo(tanh(5) . "<br>");
echo(tanh(10) . "<br>");
echo(tanh(-5) . "<br>");
echo(tanh(-10));
?>
»Exécuter exemple Définition et utilisation
Le tanh() renvoie la tangente hyperbolique d'un nombre, qui est égal à sinh(x) / cosh(x) .
Syntaxe
tanh( number );
Paramètre | La description |
---|---|
number | Champs obligatoires. Indique un nombre |
Détails techniques
Valeur de retour: | La tangente hyperbolique de nombre |
---|---|
Type de retour: | Flotte |
PHP Version: | 4.1+ |
<PHP Math Reference