필터 지우기
필터 지우기

save figure

조회 수: 5 (최근 30일)
Baba
Baba 2011년 11월 8일
How do I save this figure and supress so that the figure isn't actually shown?
data=load('data.txt')
plot(x)

채택된 답변

Fangjun Jiang
Fangjun Jiang 2011년 11월 8일
h=figure('visible','off');
plot(h,1:10);
saveas();
close(h);

추가 답변 (0개)

카테고리

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