home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320.zip / ATAN2.AWK < prev    next >
Text File  |  1990-02-08  |  136b  |  4 lines

  1. # calculate and print the arctan of two sides of a triangle useing atan2
  2.  
  3. { printf ("atan2(%g, %g) = %g\n", $1, $2, atan2($1, $2)) }
  4.