save figure

15 ビュー (過去 30 日間)
Baba
Baba 2011 年 11 月 8 日
How do I save this figure and supress so that the figure isn't actually shown?
data=load('data.txt')
plot(x)

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 11 月 8 日
h=figure('visible','off');
plot(h,1:10);
saveas();
close(h);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePrinting and Saving についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by