フィルターのクリア

Error "INDEX EXCEEDS MATRIX DIMENSION"

1 回表示 (過去 30 日間)
Muthuraj V
Muthuraj V 2012 年 3 月 7 日
Hi all,
what does this error indicate while woring with the blkproc() function in MATLAB
error is "INDEX EXCEEDS MATRIX DIMENSION"
Thanks
  1 件のコメント
Andrei Bobrov
Andrei Bobrov 2012 年 3 月 7 日
get your example

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

採用された回答

Walter Roberson
Walter Roberson 2012 年 3 月 7 日
It means you tried to access an array at an index that is too large to fit in the array.
For example,
m = magic(4);
would be a 4 x 4 array, so (for example) m(2,3) and m(:,4) are valid indexes for m. But if I tried to index m(1,5) then I would be trying to access a column that does not exist in the array.
  1 件のコメント
Muthuraj V
Muthuraj V 2012 年 3 月 7 日
Thanks walter,
but can u plz explain me this with respect to block processing,,
Thanks,

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by