home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / educ / nlreg33 / whatsnew.doc < prev   
Text File  |  1995-01-10  |  3KB  |  60 lines

  1.                                NLREG Version 3.x
  2.  
  3.       NLREG version 3 is a major upgrade from the previous  version  (2.5)
  4.       and  involved  many  months  of intensive programming effort.  Note:
  5.       previous versions of  NLREG  were  called  "Nonlin".   Some  of  the
  6.       improvements in version 3 are summarized below:
  7.  
  8.       1.  A  greatly  enhanced  language  for describing the analysis that
  9.           NLREG  is  to  perform.   The  syntax  is  similar  to   the   C
  10.           programming   language   and  includes  intermediate  variables,
  11.           arrays, conditional statements  (IF,  ELSE),  and  looping  (DO,
  12.           WHILE,  FOR).   The  new  language makes it possible to describe
  13.           much more complex models and allows you to  express  complicated
  14.           functions is a more natural style.
  15.  
  16.       2.  A  #INCLUDE  statement that allows you to include external files
  17.           in your command file.
  18.  
  19.       3.  Significantly improved plotting commands.  You can  now  specify
  20.           your  own  labels  for the X and Y axes and the scaling has been
  21.           improved.  A new SPLOT command allows  you  to  create  multiple
  22.           scatter  plots  and you can display one or two sets of points on
  23.           the same plot for comparison purposes.  You can also  optionally
  24.           connect the points with line segments.
  25.  
  26.       4.  Computation  of a correlation matrix.  The new CORRELATE command
  27.           causes NLREG to compute and print a correlation matrix  of  your
  28.           input   variables.    This   is  useful  for  diagnosing  highly
  29.           correlated independent variables that could cause  problems  for
  30.           the model.
  31.  
  32.       5.  You  may  select  degrees  or radians as the angle units for the
  33.           built-in trig library functions.
  34.  
  35.       Because the language syntax has changed you will need  to  edit  any
  36.       NLREG  command  procedures  that  you  have  been using with earlier
  37.       versions of NLREG.  The  new  manual  fully  explains  the  language
  38.       syntax  and  all  of  the supplied example files (*.NLR) use the new
  39.       syntax.  The following is a summary of the changes that are needed:
  40.  
  41.       1.  Each statement must be terminated with a  semicolon.   Note:  in
  42.           previous  versions  the semicolon indicated that a statement was
  43.           continued to the next  line,  now  statements  may  flow  across
  44.           lines and are terminated by a semicolon.
  45.  
  46.       2.  The  comment  introducer  sequence  has been changed from '!' to
  47.           '//'.
  48.  
  49.       3.  The TITLE string must be enclosed in quote marks.
  50.  
  51.       4.  File names in OUTPUT and POUTPUT statements must be enclosed  in
  52.           quote marks.
  53.  
  54.       5.  The  default  measure for angles is degrees rather than radians.
  55.           You can use the ANGLETYPE statement to change the  default  back
  56.           to radians if you wish.
  57.  
  58.       6.  The  DOMAIN  statement has been changed to an option on the plot
  59.           commands.
  60.