Filter löschen
Filter löschen

Index exceeds matrix dimensions.

1 Ansicht (letzte 30 Tage)
elisa ewin
elisa ewin am 22 Mär. 2017
Bearbeitet: Adam am 22 Mär. 2017
Hi! I have to implement a formule vp(i)=lambda*v(i)+(1-lambda)*vp(i-1)
I have used this code
for i=1:size(Users,2)
for j=1:size(Users(i).data_split3,1)
if (userTouristicTraj(i).touristicData(j).time_in_secs ~= 0)
for l=1:size(userTouristicTraj(i).touristicData(j).time,1)
userTouristicTraj(i).touristicData(j).average_speed(l)=userTouristicTraj(i).touristicData(j).travel_speed(l);
userTouristicTraj(i).touristicData(j).average_speed(l+1)=lambda*userTouristicTraj(i).touristicData(j).travel_speed(l+1)+(1-lambda)*userTouristicTraj(i).touristicData(j).average_speed(l);
end
end
end
end
it doesn't run, can you give me some suggestions to solve the problem? thanks
  2 Kommentare
KSSV
KSSV am 22 Mär. 2017
No information about variables used and the attached mat file. Tough to get help unless you explain the question.
Adam
Adam am 22 Mär. 2017
Bearbeitet: Adam am 22 Mär. 2017
doc dbstop
Specifically:
dbstop if error
although I always use the dropdown list in the editor ribbon. These kinds of errors are trivial to find and understand if you just use the debugger and the option for it to stop when it hits an error so that you can examine the code.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jan
Jan am 22 Mär. 2017
Bearbeitet: Jan am 22 Mär. 2017
I boldy guess, that
userTouristicTraj(i).touristicData(j).travel_speed
does not have
size(userTouristicTraj(i).touristicData(j).time,1) + 1
elements. Then the indexing by (l+1) must fail.
I cannot run your code due to the m,issing variable "Users".

Weitere Antworten (0)

Kategorien

Mehr zu Debugging and Analysis 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