home *** CD-ROM | disk | FTP | other *** search
- * table external+internal
- table(f,x) external
- It produces a table of the function values from x=-5 to x=5 with step 1.
-
- table(f,x,xmin,xmax) external
- It produces a table of the function values from x=-5 to x=5 with the
- default step dx = 1.
-
- table(f,x,xmin,xmax,dx) internal
- It produces a table of the function values when x runs from xmin to xmax
- with step dx.
-
- table(y[x],x,xmin,xmax,dx) internal
- It transforms a list y into a table.
- See also: list, plot.
- e.g. table(x^2,x,1,4,1).
-