フィルターのクリア

Index exceeds the number of array elements

2 ビュー (過去 30 日間)
Blazej Staniak
Blazej Staniak 2021 年 11 月 12 日
コメント済み: KSSV 2021 年 11 月 15 日
Hello, matlab shows me this problem:
Index exceeds the number of array elements (495).
Error in Untitled22222 (line 34)
if suma(i)== 0
I mean exactly this loop, I got a little lost and I don't know what to do next.
while 1
if suma(i)== 0
p_kolumna=i;
break;
end
i=i+1;
end
Thank you for your help
  10 件のコメント
KSSV
KSSV 2021 年 11 月 12 日
What is size of the imahe im1.
im1 = imread('Audi_1.jpg');
Blazej Staniak
Blazej Staniak 2021 年 11 月 12 日
1632x3264x3

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

回答 (2 件)

KSSV
KSSV 2021 年 11 月 12 日
Replace the while loop condition:
while 1
with
while i<=length(suma)
It eill not give the error..but still I am surprised what for this while loop is.
  4 件のコメント
Blazej Staniak
Blazej Staniak 2021 年 11 月 12 日
p_kolumna is definded in the loop, how to repair?
KSSV
KSSV 2021 年 11 月 15 日
It is defined... But in the while loop suma will never be zero and it will never take the defined value. What is your problem exactly?

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


Blazej Staniak
Blazej Staniak 2021 年 11 月 15 日
編集済み: Blazej Staniak 2021 年 11 月 15 日
does anyone know how to solve

カテゴリ

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