home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e067 / 1.ddi / README < prev    next >
Encoding:
Text File  |  1989-01-11  |  3.4 KB  |  81 lines

  1.  
  2. The following are features in Derive that are not yet in the manual:
  3.  
  4.  
  5.                 New Mathematical Functions
  6.  
  7. MAX (x1, x2, x3, ...) returns the maximum value of its arguments.
  8.     Upon simplification, MAX (z, w) is replaced by  (z+w)/2 + |z-w|/2.
  9.  
  10. MIN (x1, x2, x3, ...) returns the minimum value of its arguments.
  11.     Upon simplification, MIN (z, w) is replaced by  (z+w)/2 - |z-w|/2.
  12.  
  13. ERF (z) is the error function commonly used in probability and statistics.
  14.     ERF (z) is defined as the integral of the Gaussian distribution
  15.     (i.e.  2/sqrt(pi) * #e^-t^2)  as t goes from 0 to z.
  16.  
  17. ERF (z, w) is the generalized error function.  Upon simplification,
  18.     ERF (z, w) is replaced by  ERF(w) - ERF(z).
  19.  
  20. ERFC (z) is the complementary error function.  Upon simplification,
  21.     ERFC (z) is replaced by  1 - ERF(z).
  22.  
  23. NORMAL (z, m, s) is the normal distribution function of z with mean m and
  24.     standard deviation s.  Upon simplification, NORMAL (z, m, s) is
  25.     replaced by  1/2*(1+ERF((z-m)/(s*sqrt(2)))),  with m defaulting to 0
  26.     and s defaulting to 1.
  27.  
  28.  
  29.                 New Algebraic Capabilities
  30.  
  31. 1.  Inequalities using the operators <, <=, >, <=, and /= can be entered
  32.     using an Author command and solved using a soLve command.  For example,
  33.     solving  -2 x + 3 y <= 7  for x results in  x >= (3 y - 7) / 2.
  34.  
  35. 2.  The soLve command can now solve a vector of linear equations.  For example,
  36.     solving  [2x + 3y = 7, x - 5y]  results in  [x = 35/13, y = 7/13].
  37.  
  38. 3.  The Calculus Differentiate command allows you to specify the order
  39.     of the derivative.  Use negative numbers to specify antiderivatives.
  40.  
  41. 4.  The files ENGLISH.MTH and METRIC.MTH define conversion constants for the
  42.     English and Metric unit systems.  Use the Transfer Merge command to load
  43.     the files.  Loading both files converts quantities to the unit system of
  44.     the LAST file that was loaded.
  45.  
  46. 5.  On NEC PC-9801 compatible computers, use the yen character instead of the
  47.     back-accent character for the matrix transpose operator (see Section 8.3).
  48.  
  49.  
  50.                 New Screen Display Control
  51.  
  52. 1.  On PC compatible computers, pressing the F5 function key switches to the
  53.     previous display mode as set by an Options Display command.  F5 is a fast
  54.     way to switch between text and graphics display modes.
  55.  
  56. 2.  The Options Color command allows you to set the color used to display
  57.     characters and the background color for the various regions of the screen.
  58.  
  59.  
  60.                 New Transfer Command Options
  61.  
  62. 1.  The Transfer Print Options command has fields that allow you to specify
  63.     the page length and to print only the highlighted expression.
  64.  
  65. 2.  The Transfer Save command can also generate Pascal compatible files.  The
  66.     file SUPPORT.PAS defines functions that might appear in these PAS files.
  67.  
  68. 3.  The Transfer Save command has a field that allows you to specify the
  69.     maximum line length of MTH and PAS (Pascal) files.  Expressions in FOR
  70.     (FORTRAN) files are automatically restricted to columns 7 through 72.
  71.  
  72.  
  73.                 New Plot Features
  74.  
  75. 1.  The new 2D-plot window command Options Type allows you to select either
  76.     rectangular or polar coordinate mode for plotting.  In polar coordinate
  77.     mode, the position of the cross is also shown in polar coordinates.
  78.  
  79. 2.  When plotting parametric expressions, the Plot command menu gives you the
  80.     option of plotting discrete points instead of plotting continuously.
  81.