How to save and use the slope of fitted line in linear curve fitting as a variable in matlab?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello How to save and use the slope of fitted line in linear curve fitting as a variable in matlab?
0 Kommentare
Antworten (1)
Star Strider
am 10 Nov. 2017
If you are referring to the line produced by the lsline function, this works:
figure(1)
scatter(1:10, rand(1, 10))
hl = lsline;
B = [ones(size(hl.XData(:))), hl.XData(:)]\hl.YData(:);
Slope = B(2)
Intercept = B(1)
0 Kommentare
Siehe auch
Kategorien
Mehr zu 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!