Array indices must be positive integers or logical values.
Show older comments
I am writing a program to simulate an F1 car laptime. Imagibe the car has come out of a corner and is accelerating doen a straight until it has to brake for the next corner. The times for this acceleration and deceleration have to be counted seperately as they are governed by seperate functions. There is a part of the code where the time taken to accelerate on a staright (t1) has to be reset to 0 to then start the the clock for the time taken to decelerate for the upcoming corner (t2) to be counted. I keep getting the same error "Array indices must be positive integers or logical values." no matter what i do.
% Calculate the straights
strTimes = zeros(num_str,1);
sLap = zeros(nseg*nds,1); %sLap = distance around lap
vCar = zeros(nseg*nds,1); %vCar = velocity of car around lap
str = 1;
smax = 0;
for i=1:nseg
rad = track(i,2);
dist = track(i,1);
s = linspace(0,dist,nds)'; %nds = 500 (no. of iterations)
nstart = ((i-1)*nds+1);
nend = (i*nds);
sLap(nstart:nend) = smax + s;
smax = max(sLap);
% Straight
if rad == 0
ds = s(2)-s(1);
% Corner segment numbers
pcsn = i-1; %previous corner segment number
ncsn = i+1; %next corner segment number
if pcsn < 1
pcsn = max(cnrNum);
end
if ncsn>nseg
ncsn = min(cnrNum);
end
pcn = find(pcsn==cnrNum);
ncn = find(ncsn==cnrNum);
[Va,P,G,WE,t1] = calc_acceleration(nds,rho,cd,A,m,s,Rw,cnrVel(pcn));
[Vd,t2] = calc_deceleration(ds,cnrVel(ncn),nds,rho,A,cd,m,cz);
[V,I] = min([Va,Vd],[],2);
vCar(nstart:nend) = V;
% Reset the clock for the braking time, ncn = next corner number
%cnrVel = corner velocity, t1 = acceleration time
%t2 = deceleration time
if max(V) > cnrVel(ncn)
ta = t1(I==3);
tb = t2(I==3);
tb = tb+(ta(end)-tb(1));
t = [ta;tb];
else
t = t1;
end
strTimes(str) = max(t);
str = str+1;
else
vCar(nstart:nend) = ones(nds,1)*cnrVel(i==cnrNum);
end
end
6 Comments
Use the debugging tools to find the line on which the error is, then look at the relevant components on the command line. You will very quickly find where the problem is. Just glancing at code here though it is almost impossible since there isn't a blindingly obvious loop from 0 or the kind of thing people often do like that and then use as an index into an array.
Another source of this kind of error is if you accidentally over-wrote a function with a variable name, then you call the function (or think you are calling the function), but the code actually tries to index into the array you overwrote the function name with instead.
Alastair Combe
on 11 Apr 2019
Adam
on 11 Apr 2019
So you either need to find out why they are empty, if this is not supposed to happen, or add in some code of the kind
if ~isempty( tb )
...
end
if it is valid for these to be empty at some point so that you need to handle this case.
Alastair Combe
on 11 Apr 2019
Torsten
on 11 Apr 2019
Maybe I is never 3 ? Or t1 and t2 don't have the same length as I ? We don't know.
Alastair Combe
on 11 Apr 2019
Accepted Answer
More Answers (0)
Categories
Find more on Historical Contests in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!