live script when result is very long
조회 수: 4 (최근 30일)
이전 댓글 표시
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
Adam
2016년 12월 19일
Can you not just split it over multiple lines? Reducing the font size is not all that practical in a generic case where it may have to become infeasibly small to fit a whole line on.
Davide Bassignana
2017년 11월 22일
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.
답변 (1개)
Isabella Osetinsky-Tzidaki
2016년 12월 19일
have you tried "xlswrite" command?
Just like this:
% instead of disp('X')
xlswrite('MyFile.xlsx','X')
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!