下記のようなプログラムで、エラーメッセージが出ます。どのように直せば良いですか
4 views (last 30 days)
Show older comments
Tsagaanbayar
on 12 Mar 2024
Answered: Kojiro Saito
on 13 Mar 2024
for r = 1:CNum
DDD(r)=kyori(zahyou(r,1),r);
end
位置 1 のインデックスが配列範囲を超えています
0 Comments
Accepted Answer
Kojiro Saito
on 13 Mar 2024
kyoriの1つ目のインデックス「zahyou(r,1)」の値が、rの値によってkyoriの配列の行数を超えてしまっているようです。
size(kyori, 1)
でkyoriの行数を確認し、
for r = 1:CNum
zahyou(r,1)
end
がkyoriの行数を超えているところがないか確認してみてください。
0 Comments
More Answers (0)
See Also
Categories
Find more on ビッグ データの処理 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!