home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / NLIM.(X) < prev    next >
Text File  |  1993-10-16  |  137b  |  6 lines

  1. #    numerical limit
  2. #    e.g. nlim(sin(x)/x, x=0) gives 1
  3. #    See also : lim
  4.  
  5. nlim(y_, eq_) := num(subs(y, left(eq) = right(eq)+10^-10))
  6.