How to combine multiple curve fits in one plot?

186 Ansichten (letzte 30 Tage)
Hüsamettin Taysi
Hüsamettin Taysi am 25 Mär. 2021
Kommentiert: Matt J am 24 Feb. 2023
Hi, this is my first study in Matlab. I have used "cftool" function, and have plotted these two figures. "x", which is "VarName1" is same for both. What I want to do is combine these two figures in one plot. x axis will be same, y axis will extend to maximum y value. Briefly, I want to see all points and their fits in one graph. What am I supposed to do?
Thanks in advance.

Antworten (2)

Matt J
Matt J am 17 Mär. 2022
Bearbeitet: Matt J am 17 Mär. 2022
Use the cftool to export each fit to a workspace variable cfit1 and cfit2. Then
plot(cfit1,Varname1,y); hold on
plot(cfit2,Varname1,y1); hold off
  3 Kommentare
Carlos Eduardo Correia Gatell
This worked perfectly for me. Thank you.
Matt J
Matt J am 24 Feb. 2023
@Carlos Eduardo Correia Gatell I'm glad it worked, but if so, please Accept-click the Answer.

Melden Sie sich an, um zu kommentieren.


Daniel Pollard
Daniel Pollard am 25 Mär. 2021
This was literally the top result when I googled "plot multiple graphs matlab". For future reference:
  1 Kommentar
Esra Ilhan
Esra Ilhan am 17 Mär. 2022
This link does not necessarly show how to create the plots in the same figure with Curve fitting option ;)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Get Started with 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!

Translated by