Plotting within a nested for loop

1 次查看(过去 30 天)
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

回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by