필터 지우기
필터 지우기

How to plot while loop iteration in same figure

조회 수: 3 (최근 30일)
hotait hassane
hotait hassane 2021년 4월 3일
댓글: Cris LaPierre 2021년 4월 3일
MT= [m, n] matrix
%%%%%%%%%%%%%%%%%%%%%%%%%%%
while cidx == 1
i=i+4;
Z = MT (1: i, :);
[idx,cidx] = clusterer(Z);
plot(clusterer,Z,idx);
End
%%%%%
with cidx = 11111111111111111111111111111 2222
Knowing that the program gives me a new figure each time I do an iteration cidx=1 (10 figures for 10 iterations) so how I can plot the figures in the same one ?
Thanks in advance

답변 (1개)

Cris LaPierre
Cris LaPierre 2021년 4월 3일
Use hold on and hold off as appropriate. You can learn more about them in Ch 9 of MATLAB Onramp.
  댓글 수: 2
hotait hassane
hotait hassane 2021년 4월 3일
Thank you Cris LaPierre, i tired it but it doesn't work
Cris LaPierre
Cris LaPierre 2021년 4월 3일
What did you try? It'll work if done correctly. Have you gone through ch 9 of the onramp yet?

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

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by