Mostrar comentarios más antiguos
I'm a matlab beginner user. I have saved two figures in .m format, how to combine these two figures to make it into one figure?
Respuestas (2)
Fangjun Jiang
el 6 de Sept. de 2011
It may or may not work depending what is in that .m file. But try this, assume you have file1.m and file2.m
file1;
hold on;
file2;
Hari Krishan
el 10 de Abr. de 2012
0 votos
The hold on worked for me. I was combining a scatter with a plot.
scatter(Xxs,Yxs); hold on; plot(xgrid,ygrid);
Categorías
Más información sobre Printing and Saving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!