home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 608b.lha / icalc_v1.1a / TechNotes < prev    next >
Text File  |  1992-01-29  |  636b  |  29 lines

  1. =============================================================================
  2.  
  3.     icalc - a complex-number expression parser
  4.  
  5.     by Martin W Scott
  6.  
  7. =============================================================================
  8.  
  9.     Technical notes
  10.  
  11. =============================================================================
  12.  
  13.     Principal value ranges
  14.     ----------------------
  15.  
  16.     The PVRs are defined as follows:
  17.  
  18.     asin:    if u + iv = asin(z), then
  19.         -PI/2 <= u <= PI/2    if v >= 0
  20.         -PI/2  < u  < PI/2    if v < 0
  21.  
  22.     acos:    if u + iv = acos(z), then
  23.         0 <= u <= PI    if v >= 0
  24.         0  < u  < PI    if v < 0
  25.  
  26.     atan:    if u + iv = atan(z), then
  27.         -PI/2 < u < PI/2    
  28.  
  29.