ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
1.7 KiB

  1. LINEAR REGRESSION
  2. NUMBER OF KNOWN POINTS? 3
  3. X,Y OF POINT 1 ? 1,2
  4. X,Y OF POINT 2 ? 3,4
  5. X,Y OF POINT 3 ? 5,8
  6. F(X) = .166667 + ( 1.5 * x )
  7. COEFFICIENT OF DETERMINATION (R[2) = .964286
  8. COEFFICIENT OF CORRELATION = .981981
  9. STANDARD ERROR OF ESTIMATE = .816497
  10. INTERPOLATION: (ENTER X=0 TO END PROGRAM)
  11. X =? 2
  12. Y = 3.16667
  13. X =? 4
  14. Y = 6.16667
  15. X =? 0