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

  1. * coefall                                             internal
  2. coefall(y, x) gives a list of all coefficients of x in the polynomial y.
  3. order < 5.  The polynomial is in order from low to high.
  4. See also: coef.
  5. e.g.
  6. IN:  coefall(6+5*x+x^2, x)
  7. OUT: [6, 5, 1]
  8.