How to save file as pdf?

조회 수: 4 (최근 30일)
sam plant
sam plant 2018년 12월 13일
편집: YT 2018년 12월 13일
imagesc(x,y,img), colorbar, %color plot
objectiveoutput = saveas(gcf,'objective.pdf'); %saving image as pdf
The above is a plot i wish to save however I am receiving the error that there is too many outputs.
Any help?

채택된 답변

madhan ravi
madhan ravi 2018년 12월 13일
편집: madhan ravi 2018년 12월 13일
saveas(gcf,'objective.pdf') % without objectiveoutput =

추가 답변 (1개)

YT
YT 2018년 12월 13일
편집: YT 2018년 12월 13일
Well I don't think you can call saveas with an output argument which is why it gave you the error (see saveas documentation here). Just remove it and it will probably be fine
saveas(gcf,'objective.pdf');

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by