Plotting within a nested for loop

1 Ansicht (letzte 30 Tage)
Sydnie Schmidt
Sydnie Schmidt am 14 Sep. 2019
Beantwortet: the cyclist am 14 Sep. 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

Antworten (1)

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

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by