live script when result is very long
7 views (last 30 days)
Show older comments
When I use the disp function in live script, when the result is very long, the output file (either pdf or html) won't be able to show the result correctly(not fit in one line, since there is no scroll bar). Is this a bug that Matlab does not auto shrink the result size to fit or is there some way to set the font size for disp function when in live script?
2 Comments
Davide Bassignana
on 22 Nov 2017
How can you split an output on multiple lines ? Or even use fprintf ? I have the very same problem, my live script has a very long symbolic output function and it doesn't fit the pdf page when exporting.
Answers (1)
Isabella Osetinsky-Tzidaki
on 19 Dec 2016
have you tried "xlswrite" command?
Just like this:
% instead of disp('X')
xlswrite('MyFile.xlsx','X')
See Also
Categories
Find more on MATLAB Report Generator in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!