How to save and use the slope of fitted line in linear curve fitting as a variable in matlab?

조회 수: 4 (최근 30일)
Hello How to save and use the slope of fitted line in linear curve fitting as a variable in matlab?

답변 (1개)

Star Strider
Star Strider 2017년 11월 10일
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)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by