how to save matlab figure in format of .fig
5 ビュー (過去 30 日間)
古いコメントを表示
i am using R2016a and trying to save figure as .fig. it saves but when i opening the figure it is open the matlab code not opening the figure.i attached saved figure below
1 件のコメント
sloppydisk
2018 年 5 月 14 日
It works fine for me, does your code have the same name as the figure? If so, try changing that.
回答 (1 件)
KALYAN ACHARJYA
2018 年 5 月 14 日
編集済み: KALYAN ACHARJYA
2018 年 5 月 14 日
% try this one
figure
%disp fugure here, plot/imshow/surf etc
savefig('figureFile.fig'); % 'figureFile' save file name, you can change it.
%To open it use following
openfig('figureFile.fig');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Printing and Saving についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!