Index exceeds the number of array elements (1).

1 次查看(过去 30 天)
s(1) = 100; % Start at 100
step1 = 0:1; % The step goes from 0 to 1
F1 = [25000, 100000]; %The number of simulations for the walker
for Z = 1:length(F1) %Retrieves the length of each simulation
for B = 1:F1(Z)
for L = 100:2601 % This is for the 2500 steps, and we repeat the functions from part 1
o(L) = L; % This keeps track of the time
d(L) = rand; %Retrieves a random value for the walker
if d(L) > .5
s(L) = s(L-1) + step1; %The walker steps to the right
elseif d(L) < .5
s(L) = s(L-1) - step1; %The walker steps to the left
else
s(L) = .5;
end
end
Endp(B) = s(L); %This stores the poisiton for each simulation
end
  7 个评论
Ameer Hamza
Ameer Hamza 2020-3-29
Omar, solving it depends on what you are trying to do in the code. If you got the code from someone else, then you should ask the author about this issue.
Omar Serag
Omar Serag 2020-3-29
It is my code. I'm just trying to edit the step size, so it can be anywhere from 0 to 1. The error resides in the for loop. I'll try using the debugging tools on MATLAB. Thank you for your help though.

请先登录,再进行评论。

回答(1 个)

Rik
Rik 2020-3-29
If you set a breakpoint just before that line you will notice the values of all your variables: s is a scalar and L has a value of 100. Then you try to do s(L-1), which will attempt to access the 99th position in s, which doesn't exist.
You should really try using the debugging tools, starting with the warnings mlint is giving you. Make sure to resolve those. If you are absolutely sure they don't apply to your specific situation you can right-click the orange underlined code and select the option to suppress the warning on that line. None of the warnings mlint is currently giving you should be ignored.
Matlab has very flexible debugging tools including breakpoints and the option to halt execution when an error has been thrown. Use them to your advantage.

类别

Help CenterFile Exchange 中查找有关 Programmatic Model Editing 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by