home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / TEXT / UTILITY / AWK320.ZIP / ATAN2.AWK < prev    next >
Encoding:
Text File  |  1990-02-07  |  136 b   |  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.