GUIDE outputting a .txt file

1 vue (au cours des 30 derniers jours)
Julien
Julien le 29 Juil 2014
Réponse apportée : Sara le 29 Juil 2014
Hi all,
I'm working on a GUI that generates reports based on some input data. I'm currently trying to produce a text based output that can be printed. Ideally, I'd like to make and save a .txt file that can be copied into a LaTeX compiler.
So, from the callback on a pushbutton, how would I output a .txt file that could be saved somewhere?
This is my first experience with MATLAB coding, so any help would be appreciated. Even just pointing me in the right direction would be great.

Réponse acceptée

Sara
Sara le 29 Juil 2014
Look up fopen, fprintf, and fclose. Your code will be something like this:
fid = fopen('filename.txt','w');
fprintf(fid,'%f %s\n',your_numeric_var,your_string);
fclose(fid);

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