how to save the image obtained from the plot command?
4 ビュー (過去 30 日間)
古いコメントを表示
i have used the command "plot( cytoplasm1(:,2), cytoplasm1(:,1), 'g-', 'LineWidth', 1)" in my code. i don't know how to save the image that i am getting from this command into the folder... plz help me.....
0 件のコメント
採用された回答
Image Analyst
2014 年 10 月 10 日
Try export_fig(): http://matlab.wikia.com/wiki/FAQ#How_do_I_save_my_figure.2C_axes.2C_or_image.3F_I.27m_having_trouble_with_the_built_in_MATLAB_functions.
or try getframe().
0 件のコメント
その他の回答 (1 件)
Stephen23
2014 年 10 月 10 日
編集済み: Stephen23
2014 年 10 月 10 日
6 件のコメント
Image Analyst
2014 年 10 月 13 日
I would not use the cd function. I'd use fullfile() as per the FAQ.
fullFileName = fullfile(folder, baseFileName);
The FAQ explains further why this is the recommendation: http://matlab.wikia.com/wiki/FAQ#Where_did_my_file_go.3F_The_risks_of_using_the_cd_function.
Stephen23
2014 年 10 月 13 日
編集済み: Stephen23
2014 年 10 月 13 日
Sure. I was not trying to imply that they should change the Current Folder for just that one operation, but I have noticed that some users do not seem to realize that the Current Folder can be changed at all, yet their work would be much simpler if they simply changed to a more convenient directory.
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!