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

  1.         4.11     Tables of Function Values
  2.     If you want to look at a table of values for a formula, you 
  3. can use the table command:
  4.       table(f(x), x)
  5.       table(f(x), x from xmin to xmax)
  6.       table(f(x), x from xmin to xmax step dx)
  7. It causes a table of values for f(x) to be displayed with x=xmin, 
  8. xmin+dx, ..., xmax.  If xmin, xmax, and step omit, then xmin=-5, xmax=5,
  9. and dx=1 for default. You can specify a function to be in table(), 
  10.  
  11.     Example 4.11.1. 
  12. Make a table of x^2.
  13.  
  14. IN:  table(x^2, x)
  15. OUT:
  16. -5,     25
  17. -4,     16
  18. -3,     9
  19. -2,     4
  20. :       :
  21. :       :
  22.  
  23.     Its output can be written into a disk file for interfacing
  24. with other software (e.g. the numeric computation software).
  25.