home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / ABS.KEY < prev    next >
Text File  |  1993-11-07  |  312b  |  9 lines

  1. * abs                                                 internal+external
  2. abs(x) is the absolute value function of x. x can be complex numbers.
  3. abs(x) = sqrt(re(x)^2+im(x)^2). The results are in the range 0 to inf.
  4. abs(x) = |x|.
  5. See also: abs, arg, sign, re, im, |x|.
  6. e.g.
  7. IN:  abs(-1), abs(-i)
  8. OUT: 1, 1 
  9.