Saving a figure without menu?
조회 수: 2 (최근 30일)
이전 댓글 표시
There is a figure('Menu','none') and a plot inside that figure. nothing else. is it possible to save it in .fig or .jpg? or extract data?
댓글 수: 0
채택된 답변
Jan
2013년 8월 30일
You can export the figure's contents by commands written to the command window or from inside a script or function. See help print and help saveas. It would be easy to active the menubar also, as Azzi has shown already.
댓글 수: 3
추가 답변 (1개)
Azzi Abdelmalek
2013년 8월 30일
편집: Azzi Abdelmalek
2013년 8월 30일
x=0:0.1:10;
y=sin(x)
h=plot(x,y)
saveas(h,'filename.jpg')
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Specifying Target for Graphics Output에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!