How to save file as pdf?
조회 수: 4 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
madhan ravi
2018년 12월 13일
편집: madhan ravi
2018년 12월 13일
saveas(gcf,'objective.pdf') % without objectiveoutput =
댓글 수: 0
추가 답변 (1개)
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');
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!