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?

回答 (2 件)

Fangjun Jiang
Fangjun Jiang 2011 年 9 月 6 日

0 投票

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
Hari Krishan 2012 年 4 月 10 日

0 投票

The hold on worked for me. I was combining a scatter with a plot.
scatter(Xxs,Yxs); hold on; plot(xgrid,ygrid);

カテゴリ

ヘルプ センター および File ExchangePrinting and Saving についてさらに検索

質問済み:

2011 年 9 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by