Info
この質問は閉じられています。 編集または回答するには再度開いてください。
this code shows error?
1 回表示 (過去 30 日間)
古いコメントを表示
S=S(1:f-1,f+1:length(S))
,,,, error:?? Index exceeds matrix dimensions.
0 件のコメント
回答 (2 件)
Walter Roberson
2013 年 2 月 26 日
Yes, that would occur if S is not two-dimensional and at least f-1 elements in the first dimension and length(S) elements in the second dimension.
Are you possibly trying to remove element #f from S? If so then
S(f) = [];
or
S = S([1:f-1, f+1:numel(S)]);
0 件のコメント
Jan
2013 年 2 月 26 日
Another guess:
Did you define "length" as a variable? Then "length(S)" might fail. Test this by:
dbstop if error
% start the code until Matlab stops at the problem. Then:
which length
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!