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

  1. <       less than.
  2. <=      less than or equal to.
  3. >       greater than.
  4. >=      greater than or equal to.
  5.  
  6. <>      unequal
  7. a <> b gives 1 if a is not equal to b, 0 if a is equal to b, or left 
  8. unevaluated otherwise. It only test two real numbers.
  9. e.g. 2 <> 3 gives 1, 2 <> 2 gives 0.
  10.  
  11. ==      equal
  12. a==b gives 1 if a is equal to b, 0 if a is not equal to b, or left 
  13. unevaluated otherwise. It can test two complex numbers or expressions.
  14. It gives 1 if a and b are the same expression or left unevaluated otherwise.
  15. e.g. 2==2 gives 1, a==a gives 1.
  16.  
  17. =     equation sign
  18. e.g. x^6+1 = 0
  19.  
  20. :=      assigment.
  21.  
  22. ,       comma
  23. The words from, to, step, then, else and until are the same as ,.
  24.  
  25. "    string sign. e.g. "filename.sm".
  26.  
  27. |x|     the same as abs(x).
  28. '       f'(x) is the same as d(f(x),x).
  29.  
  30. #       comment statement
  31. e.g. # this is demo.
  32.  
  33. []      list. e.g. [a,b,c]
  34. ()
  35.