Errors for the slope and intercept
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I get the uncertainty for the slope and intercept when using this code
Const = polyfit(log10(x),log10(y), 1);
m = Const(1);
k = Const(2);
b_fit = (10^k) * (x.^m4);
0 Kommentare
Antworten (2)
Walter Roberson
am 3 Dez. 2018
use the two output form of polyfit and the two output form of polyval
3 Kommentare
Walter Roberson
am 3 Dez. 2018
okay so when you call polyval pass in log10 of the x locations and the second output will reflect that log space .
Siehe auch
Kategorien
Mehr zu Get Started with Curve Fitting Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!