home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / sm22a.zip / SYMBMATH.H16 < prev    next >
Text File  |  1993-04-16  |  2KB  |  40 lines

  1.           6.4.6 Switch Statement
  2.  
  3.     The switch statement sets or changes the switch status. The
  4. switch status is unchanged in memory until the new switch status is
  5. assigned.
  6.  
  7. ----------------------------------------------------------------------
  8. Switch                  Action
  9.  
  10. lowercase=on            convert letters into the lower-case letters.
  11. lowercase=off           not convert letters into the lower-case letters,
  12.             this is default.
  13.  
  14. output=basic            output form is BASIC format, this is default.
  15. output=fortran          output form is FORTRAN format.
  16. output=prolog           output form is Prolog format (internal form).
  17. output=twodim           output form is two dimension.
  18. output=off              not display output.
  19. output=on               the same as ouput=basic
  20.  
  21. numerical=on            convert numbers to floating-point numbers.
  22. numerical=off           not convert numbers to floating-point numbers, 
  23.             this is default.
  24.  
  25. expand=on               expansion. e.g. c*(a+b) to c*a+c*b.
  26. expand=off              disable expansion, this is default.
  27.  
  28. expexpand=on            exponent expansion. e.g. c^(a+b) to c^a*c^b.
  29. expexpand=off           disable exponent expansion, this is default.
  30.  
  31. lnexpand=on             log expand, e.g. ln(a*b) to ln(a)+ln(b)
  32. lnexpand=off            disable log expansion, this is default.
  33. ----------------------------------------------------------------------
  34.  
  35.     When the switch lowercase = on, all letters are converted into
  36. the lower-case letters so the upper- and lower- case letters are the 
  37. same, e.g. EXP(x) is the same as exp(x).
  38.     When the output is written to a disk file, it is recommended
  39. to set the switch output=basic.
  40.