Develop a Matlab function that remove all zeros in an input vector(using while loop)
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
using while loop
0 Kommentare
Antworten (1)
kowshik Thopalli
am 27 Nov. 2017
Bearbeitet: kowshik Thopalli
am 27 Nov. 2017
I agree with cvklpstunc that you dont need a while loop. If you are still looking for a while loop implementation, here is the code
count=1;z=1;
a=[1:10, zeros(5,1)'];
while count<=length(a)
if a(count)==0
zero_indices(z)=count;
z=z+1;
end
count=count+1;
end
a(zero_indices)=[];
Here is one line answer for what you want to do
b=a(find(a))
2 Kommentare
James Tursa
am 27 Nov. 2017
Please don't provide complete solutions to homework problems. Also your code has problems because it doesn't initialize zero_indices.
kowshik Thopalli
am 30 Nov. 2017
James Tursa- Thank you for the suggestion. Will certainly keep in mind from next time.
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!