Saving a table as PDF, - how can I rotate it 90 degrees
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello, I want to save a big table() which has like 20 columns. Therefore it would be nice to rotate the PDF paper 90 degrees.
When I save I use this
saveas(gcf,'summary','pdf')
and Matlab give me a size warning. Is there any way to rotate it?
댓글 수: 2
Adam Danz
2019년 8월 27일
Are you saving a table, a figure, or a figure that contains a table?
Does the table exist as a variable?
채택된 답변
Adam Danz
2019년 8월 27일
편집: Adam Danz
2019년 8월 27일
If the table is saved as a variable, rather than saving a figure that shows the table, save the table itself to a text file. You can do that using writetable().
There are several benefits to saving the table to a text file rather than to a figure. The text file is readable if you ever need to read the table back into matlab. A figure will pixelate the text since the text is converted to an image.
댓글 수: 4
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!