How to save a matlab table?

조회 수: 74 (최근 30일)
andrea
andrea 2020년 7월 18일
댓글: Cris LaPierre 2020년 7월 23일
I would like to save this matlab image representing a table of data as a .png or .pdf centered and without white boreder, do you have some suggestions ?
I attached the .fig to which I'm referring to.

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 7월 18일
If you want to do this programmatically, use the saveas or print function.
You can also do this interactively through the file menu in the figure window. Choose Save As and select the desired format in the drop down menu.
You can also see this post.
  댓글 수: 2
andrea
andrea 2020년 7월 23일

Yes thank you, i would like to do it programmatically but the figure it's cut when I save it as pdf

Cris LaPierre
Cris LaPierre 2020년 7월 23일
You have to explore the options. When I use print, I get the following message:
>> open untitled.fig
>> print('untitled','-dpdf')
Warning: The figure is too large for the page and will be cut off. Resize the figure, adjust the
output size by setting the figure's PaperPosition property, use the 'print' command with either
the '-bestfit' or '-fillpage' options, or use the 'Best fit' or 'Fill page' options on the 'Print
Preview' window.
> In validate (line 146)
In print (line 67)
After exploring some of the properties, this appears to give a decent solution.
open untitled.fig
set(gcf,'PaperOrientation','landscape')
print('untitled','-dpdf')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by