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

  1. * list                                                internal
  2. list(y,x,xmin,xmax,dx)  lists every y when x runs from xmin to xmax on
  3. step dx. list() is similar to do(), but list() outputs every result at
  4. every step dx, and cannot accept assignment as y.
  5. See also: do, repeat, table.
  6. e.g. [ list(x^2, x,1,3,1) ] gives [1,4,9].
  7.