Index exceeds the number of array elements

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 suma function?
Awais Saeed
Awais Saeed 2021년 11월 12일
It seems that your condidtion did not meet because of which while loop still runs with an increment of i and i becomes greater than the largest index available.
ok how should i improve it?
if summa(i) is something like 0.000000000000456, the condition will never meet. Use
format long
to see the output
the same problem
Awais Saeed
Awais Saeed 2021년 11월 12일
what do you mean by the same problem?
can you contact me? kole99@wp.pl
KSSV
KSSV 2021년 11월 12일
You should share complete code to get help. The variables are not know in the given snippet.
What is size of the imahe im1.
im1 = imread('Audi_1.jpg');
1632x3264x3

댓글을 달려면 로그인하십시오.

답변 (2개)

KSSV
KSSV 2021년 11월 12일

0 개 추천

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

yes it is working but i have outher problem...
Unrecognized function or variable 'p_kolumna'.
Error in Untitled (line 38)
im = imcrop(im, [p_kolumna, 1, kolumna, wiersz]);
KSSV
KSSV 2021년 11월 12일
It is becuase p_kolumna is not defined....the suma(i) was never equal to zero. You are missing some logic in your problem.
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일

0 개 추천

does anyone know how to solve

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

질문:

2021년 11월 12일

댓글:

2021년 11월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by