フィルターのクリア

Index exceeds matrix dimensions.

1 回表示 (過去 30 日間)
elisa ewin
elisa ewin 2017 年 3 月 22 日
編集済み: Adam 2017 年 3 月 22 日
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 件のコメント
KSSV
KSSV 2017 年 3 月 22 日
No information about variables used and the attached mat file. Tough to get help unless you explain the question.
Adam
Adam 2017 年 3 月 22 日
編集済み: Adam 2017 年 3 月 22 日
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.

サインインしてコメントする。

採用された回答

Jan
Jan 2017 年 3 月 22 日
編集済み: Jan 2017 年 3 月 22 日
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".

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDebugging and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by