Pushbutton to save or print content of an handles

1 vue (au cours des 30 derniers jours)
Jethro
Jethro le 15 Jan 2012
Hi everybody! Anyone knows how to set a print/save button?? I inserted an Edit Text space (Enabled as inactive) to use it like a display to show results of my statistics... I'd like to set pushbuttons to print or save in a file the results I see in that space... It's possible?? How can I do it??
EDIT 1:
Image Analyst and Chandra advised me to use fprintf to "save" my statistics, and what if I wanted to save or print a chart?? There're any possibilities??

Réponse acceptée

Image Analyst
Image Analyst le 15 Jan 2012
You can use GUIDE to make a GUI. In the callback for your pushbutton, put the code to save whatever you want to save. It might be calling save() to save variables to a proprietary format MAT file, it could use fwrite() to write a binary file, fprintf() to write a text file, csvwrite() or clmwrite(), imwrite() to write an image, or export_fig to save a screenshot. If you just want to save some text you sent to an edit field then I'd probably use fprintf() to write it out to a regular flat text file.
  2 commentaires
Jethro
Jethro le 15 Jan 2012
Yes, I didn't think about fprinf... Anything about how to open the std print interface??
Image Analyst
Image Analyst le 15 Jan 2012
Regarding your question below about how to save graphs, etc., use export_fig, as mentioned in the FAQ 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. and on the front page of the File Exchange (because it's the most frequently downloaded file). And regarding fprintf(), there are examples in the help, either for fprintf() or fopen().

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by