Jump to: navigation, search

Php atan

From w3cyberlearnings

Contents

PHP function atan

This function returns the arc tangent of X and X is the value of tangent radians.

Syntax atan

X is the tangent value

atan(X);

Example 1

<?php
echo atan(9);
echo "<br/>";
echo atan(-9);
?>

Output

1.460139105621
-1.460139105621


Related Links


Navigation
Web
SQL
MISC
References