Exemple
Retourner l'arc tangente de deux variables avec le atan2() fonction:
<?php
echo(atan2(0.50,0.50) . "<br>");
echo(atan2(-0.50,-0.50) . "<br>");
echo(atan2(5,5) . "<br>");
echo(atan2(10,20) . "<br>");
echo(atan2(-5,-5) . "<br>");
echo(atan2(-10,10));
?>
»Exécuter exemple Définition et utilisation
Le atan2() fonction retourne l'arc tangente de deux variables x et y.
Syntaxe
atan2( y,x );
Paramètre | La description |
---|---|
y | Champs obligatoires. Indique le dividende |
x | Champs obligatoires. Indique le diviseur |
Détails techniques
Valeur de retour: | L'arc tangente de y / x en radians, est compris entre -Pi et Pi |
---|---|
Type de retour: | Flotte |
PHP Version: | 4+ |
<PHP Math Reference