Clear Filters
Clear Filters

How to plot while loop iteration in same figure

3 views (last 30 days)
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

Answers (1)

Cris LaPierre
Cris LaPierre on 3 Apr 2021
Use hold on and hold off as appropriate. You can learn more about them in Ch 9 of MATLAB Onramp.
  2 Comments
Cris LaPierre
Cris LaPierre on 3 Apr 2021
What did you try? It'll work if done correctly. Have you gone through ch 9 of the onramp yet?

Sign in to comment.

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!