Combine 3 fig. graphs in one plot to compare each other
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Saba Hajhassan
il 23 Mar 2023
Modificato: Saba Hajhassan
il 24 Mar 2023
Hi, I have three graphs from 3 differnet simulation which represent different resutls. I wanna combine them together in plot, and I have tried differnet ways, but unfortunately I was not successful, I upload these three graphs as screenshots, because they exceed the 5MG limit.
And I appreiciate it if anyone could help me with this problem.
Thanks and have a good day!
0 Commenti
Risposta accettata
Matt J
il 23 Mar 2023
Modificato: Matt J
il 23 Mar 2023
Suppose ax is a vector of axes handles to all of your separate plots. Then, you could re-parent the axes to a TiledChartLayout in a new figure,
N=numel(ax);
figure;
T=tiledlayout(N,1);
set(ax,'Parent',T);
for i=1:N
T.Children(i).Layout.Tile=i;
end
3 Commenti
Matt J
il 23 Mar 2023
Modificato: Matt J
il 23 Mar 2023
If you have your data as separate arrays, you can just plot them in a single figure in a very basic way using tiledlayout
load matlab.mat
tiledlayout(3,1);
nexttile; plot(K_23);
nexttile; plot(K_25);
nexttile; plot(K_28);
If the idea is to have them all on the same plot, you can instead fo
figure
plot(K_23); hold on
plot(K_25);
plot(K_28); hold off
Più risposte (1)
Jon
il 23 Mar 2023
You should run each of the simulations keeping the results in local variables stored in the base workspace, and then plot the data using these variables. So for example suppose the results of running the first simulation were kept in the variable t1,x1 the second simulation in t2,x2, and for the third t3,x3 then you could plot the combined results using
plot(t1,x1,t2,x2,t3,x3)
3 Commenti
Jon
il 23 Mar 2023
You could also consider keeping the results in arrays rather than naming them t1,x1, t2,x2 etc
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!