linear fit
이전 댓글 표시
When plotting a scatter plot is it possible to add a linear fit to the the graph without having to go into tools-> basic fitting and clicking on linear and show equations?
채택된 답변
추가 답변 (5개)
Thomas
2012년 1월 31일
1 개 추천
Also you can always do it once manually, generate data set, create the plot, make the linear fit with the equations, then in the Figure window
File>Generate code..
This will create a MATLAB function for everything that you did manually and can use it again and again if you have more data sets.
댓글 수: 1
Galina Machavariani
2021년 9월 2일
After I did linear fit with equation, What should I write in the command window to generate the code?
Wayne King
2012년 1월 31일
Hi, yes, you can use lsline()
x = 1:10;
y1 = x + randn(1,10);
scatter(x,y1,25,'b','*')
hold on;
lsline;
댓글 수: 4
Richard
2012년 1월 31일
Wayne King
2012년 1월 31일
lsline(), not isline. Did you copy and paste my code? I didn't write isline.
Richard
2012년 2월 1일
vkehayas
2016년 9월 30일
The statistics toolbox is required for
lsline
Annu Panwar
2017년 9월 13일
0 개 추천
but anyone has observed that the results are different when you do polyfit by using codes and manually?
sabreen haj
2018년 4월 27일
0 개 추천
Can you help me to write script for calibration curve And give me the equation so i can finde the x value then the result shown in a table with everage of 3 x value and std
Marcello Wienhoven
2021년 1월 11일
0 개 추천
x = 1:10;
y1 = x + randn(1,10);
scatter(x,y1,25,'b','*')
P = polyfit(x,y1,1);
yfit = P(1)*x+P(2);
hold on;
plot(x,yfit,'r-.');
댓글 수: 1
Galina Machavariani
2021년 9월 2일
Thank you for the answer.
And how can I display linear fit equation on the graph?
I mean not "manual" way in the graph editor, , but the code ...
Thank you !
카테고리
도움말 센터 및 File Exchange에서 Linear Predictive Coding에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
