Plotting within a nested for loop

1 visualizzazione (ultimi 30 giorni)
Sydnie Schmidt
Sydnie Schmidt il 14 Set 2019
Risposto: the cyclist il 14 Set 2019
Hello I can't see to find the problem within code. I need to plot the corresponding x2 value for all 20 iterations.
x2=0:1:10;
y=0:1:10;
hold on
for j = 1:20
for k = 1:length(x2)
m = randi([0 1]);
if m == 0
x2(k) = x2(k) + 1;
else
x2(k) = x2(k) - 1;
end
plot(x2(k),y)
end
end

Risposte (1)

the cyclist
the cyclist il 14 Set 2019
I'm guessing you wanted something like
plot(x2,y,'.')
or possibly
plot(x2,y)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by