Info
此问题已关闭。 请重新打开它进行编辑或回答。
Index exceeds matrix dimensions.
1 次查看(过去 30 天)
显示 更早的评论
if(X(n,5)==X(i(c),5));
12 个评论
Jan
2018-6-20
What does "X is a file" mean? The name of the file?
In the body of the question, there is a lower-case "i", but in the code in the comment an upper-case "I".
Does the code in the comment solve your question?
In
for j=1:4
di=abs(X(f,j)-X(i,j));
Z(i)=di;
end
You overwrite the value of Z(i) 3 times. Afterwards Z(i) contains only the value for j=4.
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!