Index exceeds the number of array elements
Show older comments
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 Comments
KSSV
on 12 Nov 2021
What is suma function?
Awais Saeed
on 12 Nov 2021
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.
Blazej Staniak
on 12 Nov 2021
Awais Saeed
on 12 Nov 2021
if summa(i) is something like 0.000000000000456, the condition will never meet. Use
format long
to see the output
Blazej Staniak
on 12 Nov 2021
Awais Saeed
on 12 Nov 2021
what do you mean by the same problem?
Blazej Staniak
on 12 Nov 2021
KSSV
on 12 Nov 2021
You should share complete code to get help. The variables are not know in the given snippet.
KSSV
on 12 Nov 2021
What is size of the imahe im1.
im1 = imread('Audi_1.jpg');
Blazej Staniak
on 12 Nov 2021
Answers (2)
KSSV
on 12 Nov 2021
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 Comments
Blazej Staniak
on 12 Nov 2021
KSSV
on 12 Nov 2021
It is becuase p_kolumna is not defined....the suma(i) was never equal to zero. You are missing some logic in your problem.
Blazej Staniak
on 12 Nov 2021
KSSV
on 15 Nov 2021
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
on 15 Nov 2021
Edited: Blazej Staniak
on 15 Nov 2021
0 votes
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!