Deleting zeros from cell matrix without resizing or reshaping matrix

1 vue (au cours des 30 derniers jours)
ozgur
ozgur le 25 Déc 2014
Réponse apportée : ozgur le 25 Déc 2014
I have a cell matrix like this
[1] [2] [6] [2] [6] [6] [1] [0] [0]
[1] [7] [2] [5] [0] [6] [4] [7] [1]
[3] [2] [0] [2] [6] [7] [4] [7] [3]
and i want to delete zeros without changing the size or shape of the cell matrix
this the result i want
[1] [2] [6] [2] [6] [6] [1] [] []
[1] [7] [2] [5] [] [6] [4] [7] [1]
[3] [2] [] [2] [6] [7] [4] [7] [3]

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 25 Déc 2014
Modifié(e) : Azzi Abdelmalek le 25 Déc 2014
a={ 1 2 6 2 6 6 1 0 0;1 7 2 5 0 6 4 7 1;3 2 0 2 6 7 4 7 3 }
a(cellfun(@not,a))={[]}

Plus de réponses (1)

ozgur
ozgur le 25 Déc 2014
thanks a lot :)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by