Index exceeds the number of array elements (1).

조회 수: 1 (최근 30일)
Omar Serag
Omar Serag 2020년 3월 29일
댓글: Omar Serag 2020년 3월 29일
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