I have this table with percentatge values over time. When I do a scatter plot i get the following:
I would like tot fit a line over these points so that it show like this:
I know probably is easy to do, but I amb quite new to matlab programming and I've been wasting a couple of hours trying to do it but I am just getting different errors for each new method I try. I just could plot a linear regression, which I didn't want because it does not fit the plot shape.
Thank you in advance

댓글 수: 1

So when you say above " would like tot (sic) fit a line over these points", you really mean a smooth curve that runs through the data cloud?
Do you have the curvefitting toolbox or the optimisation toolbox?
If not, then you have made more work for yourself, but you can always follow:

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

 채택된 답변

Hiro Yoshino
Hiro Yoshino 2020년 3월 30일

0 개 추천

Curve fitting app would suit you.
You can play around the various methods built in MATLAB.

댓글 수: 2

Thanks, it worked now! But I have another trouble. I am trying to plot two different lines in the same figure, but I can't change the colors of the lines. Do you know how to do it?
% Plot fit with data.
figure( 'Name', 'B3 and B4' );
hold on
plot( fitresult{1}, xData_B3, yData_B3,'Color',[0.87451 0.11765 0.15]); % Color is not working
plot( fitresult{2}, xData_B4, yData_B4,'Color',[0.98431 0.63921 0.102]);
Thanks
figure( 'Name', 'B3 and B4' );
hold on;
plot(fitresult{1}, 'b');
plot(xData_B3, yData_B3, 'bo');
plot(fitresult{2}, 'r');
plot(xData_B4, yData_B4, 'ro');
hold off;
Try this!?

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2020년 3월 30일

댓글:

2020년 3월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by