Easily Printing (on paper) text files
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am currently working on GUI in guide that parses data from a text file and plots it. I have been able to print the resulting figure however I would also like the program to print the raw text files along with the graph. Matlab is able to print out text files from the editor with the option to include a header/highlight code etc. but I can not find documentation on how to do this programmatically. Is there a way to open an invisible editor window and tell it to print, similar to how you print figures displayed in a gui?
% copies axes on gui to an invisible figure then prints to default printer
printfig = figure('Visible', 'off');
copyobj(handles_to_axes_in_gui, printfig)
print
0 commentaires
Réponses (1)
Jan
le 9 Mar 2011
Perhaps this helps:
Then you have to create a HMTL file at first.
ADDED: Under Windows you can install the Generic/Text only printer driver. Under Linux lpr can print text directly also.
Voir également
Catégories
En savoir plus sur Debugging and Analysis dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!