float atan ( float num ) calculates the arc tangent value : atan « Math « PHP






float atan ( float num ) calculates the arc tangent value

 
<?
    $atan1 = atan(0.4346);
    $atan2 = atan(tan(80));
?>
  
  

Related examples in the same category