Guest User

Untitled

a guest
Jan 18th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1.  
  2. final sum of squares of residuals : 0.0674024
  3. rel. change during last iteration : -2.97991e-012
  4.  
  5. degrees of freedom (FIT_NDF) : 11
  6. rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 0.0782783
  7. variance of residuals (reduced chisquare) = WSSR/ndf : 0.00612749
  8.  
  9. Final set of parameters Asymptotic Standard Error
  10. ======================= ==========================
  11.  
  12. m = -0.721802 +/- 0.02065 (2.861%)
  13. b = 6.02164 +/- 0.0591 (0.9814%)
  14.  
  15.  
  16. correlation matrix of the fit parameters:
  17.  
  18. m b
  19. m 1.000
  20. b -0.997 1.000
  21. gnuplot> plot "A vs. f.txt" using (log($1)):(log($2)):(log($3)) with yerrorbars title "log(A_v) vs. log(f) curve", f(x) title" y = -
  22. 0.721802x + 6.02164"
  23. gnuplot> g(x) = a*(x**b)
  24. gnuplot> a = 1051090
  25. gnuplot> b = -0.721802
  26. gnuplot> fit (f) "A vs. f.txt" using 1:2:3 via a, b
  27. undefined variable: f
  28.  
  29. gnuplot> fit g(x) "A vs. f.txt" using 1:2:3 via a, b
Add Comment
Please, Sign In to add comment