Easily Printing (on paper) text files
Ältere Kommentare anzeigen
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
Antworten (1)
Kategorien
Mehr zu Language Support finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!