Filter löschen
Filter löschen

Adjusting For loop size

3 Ansichten (letzte 30 Tage)
Jared
Jared am 13 Feb. 2013
If I am doing something like:
for i=1:length(array)
if length(array(i)) < 10
array(i)=[];
i=i-1;
end
end
When I delete that index, the array is no longer the same length as the for loop, so I am getting an index exceeds matrix dimensions error. How can I adjust the length of the for loop?

Akzeptierte Antwort

Jason Ross
Jason Ross am 13 Feb. 2013
I think you are looking for a while loop rather than a for loop.
  1 Kommentar
Jared
Jared am 13 Feb. 2013
You're right, forgot about them. It's too early...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by