Hi everyone,
I am using two scatter plots. How can I code the quadratic fitting in that? I tried more than 7 ways on the internet and it's not working. It does not work with polyfit n=5. It just turns into a mesy multiple lines!
Thanks
s
ScatterPlotPreCOVID = scatter(x,y,'o')
hold on
ScatterPlotPostCOVID = scatter(x1,y1,'^')
hold off
Now, I do not insist coding it into it but I cannot have both quadratics simultanously for two datasets from the tools too.

 채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 2일

1 개 추천

P = polyfit(x, y, 2);
The approximation function is then P(1)*x^2 + P(2)*x + P(3)

댓글 수: 5

Wolfgang McCormack
Wolfgang McCormack 2021년 2월 2일
편집: Wolfgang McCormack 2021년 2월 2일
@Walter Roberson thank you so much. Three values are calculated for P as array. Now how do I plot it? I want it for both data sets for comparison
I am new and not very much familiar with statistical concepts so I didnot understand what the approximation function is used for
P = polyfit(x, y, 2);
XI = linspace(min(x), max(x));
YI = polyval(P, XI);
plot(XI, YI, 'k-');
@Wolfgang McCormack oh THANK YOUUUUU SOOOO MUCHHHHHHHHHHHH! I really don't know how to thank you! I was really frustrated after all my tries. How can I pick your answer as the correct answer?
You already Accepted my answer, earlier ;-)
By the way, the way to do it without polyval would have been
P = polyfit(x, y, 2);
XI = linspace(min(x), max(x));
YI = P(1).*XI.^2 + P(2).*XI + P(3);
plot(XI, YI, 'k-');

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

제품

릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by