Source Code:
(back to article)
<?php $number = 0.5; // Get the arc tangent of the number using the atan() function $arc_tangent = atan($number); // Output the arc tangent of the number echo $arc_tangent; ?>
Result:
Report an issue