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

  1. #    order(poly, x) finds the order of poly
  2. #    e.g. order(x^2-4, x) gives 2
  3.  
  4. order(y_, x_) := length(coefall(y,x))-1
  5.