How I store/save the window figure out from running some codes?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
I run my code and I need to save the form containing the output like images or functions to open them without using MatLab.
Answers (3)
Massimo Zanetti
on 9 Oct 2016
4 votes
5 Comments
Marc Jakobi
on 9 Oct 2016
export_fig is very good for exporting to bitmap images, but it isn't very good at vector formats.
Massimo Zanetti
on 9 Oct 2016
Edited: Massimo Zanetti
on 9 Oct 2016
To print images there is no need of vector formats :) export_fig is very good at any image format, not only bitmap. It is specifically suited to save high quality images, for publications for instance.
Marc Jakobi
on 9 Oct 2016
Well it depends on your preferences. Vector formats are better for digital publications and presentations, in my opinion. And while automated methods such as export_fig are very comfortable, they can mess your images up once you use advanced figure formatting. I would definitely recommend export_fig, but ultimately, you are a lot more flexible if you learn to use Matlab's built-in functions (and when to use which ones) and create your own export tools that best suit your personal preferences. I have often found export_fig to not meet up to my expectations when it comes to vector graphics.
Massimo Zanetti
on 9 Oct 2016
Edited: Massimo Zanetti
on 9 Oct 2016
I got your point. But what I think is, Matlab exporting functions are not very handly.. export_fig is a sort of wrapping thing that makes everithing much easy.. That's why its popularity.
For more expert people, it's ok to dig into print() options, but for simple usage I found it corrupting even very simple plots.. That is the main issue why many "easy" users do not love using it.
What do you think?
Marc Jakobi
on 9 Oct 2016
Yeah, I guess that could be true :)
Image Analyst
on 9 Oct 2016
1 vote
Another option is Waterloo: http://www.mathworks.com/matlabcentral/answers/56890-publication-quality-graphics-in-matlab
Marc Jakobi
on 9 Oct 2016
for images:
doc print()
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!