Effacer les filtres
Effacer les filtres

need an empty space in a column

4 vues (au cours des 30 derniers jours)
Moon Datta
Moon Datta le 2 Nov 2012
I have a matrix like this
1 4
2 5
3 2
4 0
5 6
6 1
Now I want to delete the 0 from the column 2 but if I delete this the corresponding position is beibg deleted and 6 is coming to this place. but I need the 0 should be deleted and it will also keep the space blan. It would look like
1 4
2 5
3 2
4
5 6
6 1
how to solve the problem?
thanks in advance

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 2 Nov 2012
a = [1 4
2 5
3 2
4 0
5 6
6 1];
a(a(:,2) == 0,2) = nan;
  1 commentaire
Moon Datta
Moon Datta le 2 Nov 2012
Thank you Sir

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur NaNs 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