Saving a figure without menu?
2 ビュー (過去 30 日間)
古いコメントを表示
There is a figure('Menu','none') and a plot inside that figure. nothing else. is it possible to save it in .fig or .jpg? or extract data?
0 件のコメント
採用された回答
Jan
2013 年 8 月 30 日
You can export the figure's contents by commands written to the command window or from inside a script or function. See help print and help saveas. It would be easy to active the menubar also, as Azzi has shown already.
3 件のコメント
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 8 月 30 日
編集済み: Azzi Abdelmalek
2013 年 8 月 30 日
x=0:0.1:10;
y=sin(x)
h=plot(x,y)
saveas(h,'filename.jpg')
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specifying Target for Graphics Output についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!