Removing elements in an array

Hi,
I want to remove the elements which has zero values.
aaa = [ 0 0 2 3 0 6 ]
I need aaa = [ 2 3 6 ]
Suggest me to get this answer.

 Réponse acceptée

Thomas
Thomas le 3 Avr 2012

0 votes

aaa(aaa~=0)
or
aaa(~~aaa)

Plus de réponses (0)

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by