필터 지우기
필터 지우기

subplot in loop and save final figure, when clear all used after each loop

조회 수: 4 (최근 30일)
Bhowmik.U
Bhowmik.U 2016년 6월 23일
댓글: Jos (10584) 2016년 6월 24일
for a=1:24 body subplot(24,6,a) clear all; end
please help;
  댓글 수: 2
Bhowmik.U
Bhowmik.U 2016년 6월 23일
question is how to plot subplot, each plot in a in loop, where at end of each loop I am doing clear all;

댓글을 달려면 로그인하십시오.

답변 (1개)

Jos (10584)
Jos (10584) 2016년 6월 23일
Generally the use of clear all is not to be recommended, except at the beginning of a script. You can use CLEARVARS to free memory, which makes your code also much more readable.
  댓글 수: 4
Bhowmik.U
Bhowmik.U 2016년 6월 24일
yes I did I suppose
But cant figure out
my code: for a=1:1:24 code figure(ii) subplot(4,6,ii) plot(...) clearvars hold off; end
one figure gets replaced by other...........I dont get 4*6 plots.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by