Derniers tutoriels de développement web
 

PHP atan() Function

<PHP Math Reference

Exemple

Retourner la tangente à l'arc de nombres différents avec le atan() fonction:

<?php
echo(atan(0.50) . "<br>");
echo(atan(-0.50) . "<br>");
echo(atan(5) . "<br>");
echo(atan(-5) . "<br>");
echo(atan(100) . "<br>");
echo(atan(-100));
?>
»Exécuter exemple

Définition et utilisation

Le atan() renvoie la tangente à l'arc de arg en tant que valeur numérique comprise entre -Pi / 2 et pi / 2 radians.


Syntaxe

atan( arg );

Paramètre La description
arg Champs obligatoires. Spécifie un argument à traiter

Détails techniques

Valeur de retour: La tangente à l'arc de arg en radians
Type de retour: Flotte
PHP Version: 4+

<PHP Math Reference