Is it possible to plot data from multiple scripts on to a single figure?
Afficher commentaires plus anciens
Hi everyone, I'm a relatively new MATLAB user. I was wondering if it was possible to plot data from three scripts on to a single figure. It's for a numerical methods problem, where the same problem with the same domain is being solved using 3 different numerical schemes. I've written three different scripts and each produces a plot. I was wondering if I could display all 3 on a single graph.
Réponses (1)
Atsushi Ueno
le 23 Oct 2022
Modifié(e) : Atsushi Ueno
le 23 Oct 2022
% script file 1
x = 1:0.01:pi*2;
plot(x, sin(x));
savefig('myfig.fig'); % save current figure into a .fig file
% script file 2
openfig('myfig.fig'); % load the .fig file
hold on
x = 1:0.01:pi*2;
plot(x, cos(x));
3 commentaires
Muhammad Waleed
le 23 Oct 2022
Atsushi Ueno
le 23 Oct 2022
how about saving the figure into a .fig file?
Muhammad Waleed
le 23 Oct 2022
Catégories
En savoir plus sur Printing and Saving dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

