Modify the following program in order to get rid of the break statement without affecting the behavior of the program
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Taylie Sargent
am 4 Jul. 2015
Bearbeitet: Geoff Hayes
am 4 Jul. 2015
a = rand(1, 10);
index = 1;
while index <= size(a, 2)
if a(index) > .7
break
end;
a(index)
index = index + 1;
end;
0 Kommentare
Akzeptierte Antwort
Nobel Mondal
am 4 Jul. 2015
Hi Taylie,
I am not sure why you want the 'break' to be removed. However, the following code works - but NOT an elegant way of doing it.
a = rand(1, 10);
index = 1;
while index <= size(a, 2)
if a(index) > .7
index = size(a,2) + 1;
else
a(index)
index = index + 1;
end
end
Thanks,
Nobel.
Weitere Antworten (0)
Siehe auch
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!