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.
 
 
 
 
 
 

23 lines
1.7 KiB

  1. EXPONENTIAL REGRESSION
  2. NUMBER OF KNOWN POINTS? 3
  3. X,Y OF POINT 1 ? 1,2
  4. X,Y OF POINT 2 ? 2,33
  5. X,Y OF POINT 3 ? 3,55
  6. A = .55886
  7. B = 1.65709
  8. COEFFICIENT OF DETERMINATION (R[2) = .862442
  9. COEFFICIENT OF CORRELATION = .928677
  10. STANDARD ERROR OF ESTIMATE = .935923
  11. INTERPOLATION: (ENTER X=0 TO END PROGRAM)
  12. X =? 1.5
  13. Y = 6.71123
  14. X =? 2.5
  15. Y = 35.194
  16. X =? 0