home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug117.arc / REGRESS.LBR / REGRESS.DQC / REGRESS.DOC
Text File  |  1979-12-31  |  1KB  |  28 lines

  1. PASCAL MT+ IMPLEMENTATION OF  LINEAR REGRESSION
  2. ===============================================
  3.  
  4. NOTES :This program will calculate linear regression along a least squares
  5. line and from the data points calculates the errors in the slope and the Y
  6. intercept.
  7.          This program will encounter division by zero errors in the following
  8.          cases
  9.          1) when only two data points are specified a division by zero error is
  10.          encountered in calculating the error in the curve
  11.  
  12.          2)for obvious reasons when only one data point is specified.
  13.           û
  14. In its .com form the program will accept a maximum of 100 data points
  15. The program sends a hex 0C (control L ) for clear screen
  16. and hex 1B,41 for cursor up. If these do not match your video controller the
  17. program will have to be modified and recompiled or your screen might do some
  18. odd things.
  19.  
  20.          Aside from the notes made in the source code there is no reason why
  21.          this program should not be compilable on other compilers
  22.          I do know it will not compile under turbo pascal due to the EXIT
  23.          procedure being unavailable,
  24.  
  25.  
  26.         copyright  Bob Lunnon. 1984
  27.  
  28.