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

  1. * table                                               external+internal
  2. table(f,x)                                            external
  3. It produces a table of the function values from x=-5 to x=5 with step 1.
  4.  
  5. table(f,x,xmin,xmax)                                  external
  6. It produces a table of the function values from x=-5 to x=5 with the
  7. default step dx = 1.
  8.  
  9. table(f,x,xmin,xmax,dx)                               internal
  10. It produces a table of the function values when x runs from xmin to xmax
  11. with step dx.
  12.  
  13. table(y[x],x,xmin,xmax,dx)                            internal
  14. It transforms a list y into a table.
  15. See also: list, plot.
  16. e.g. table(x^2,x,1,4,1).
  17.