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일

1 개 추천

h=figure('visible','off');
plot(h,1:10);
saveas();
close(h);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

태그

질문:

2011년 11월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by