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