Effacer les filtres
Effacer les filtres

how can i remove an element from a matrix

1 vue (au cours des 30 derniers jours)
Imane hammou ouali
Imane hammou ouali le 14 Avr 2019
Commenté : Walter Roberson le 14 Avr 2019
hello community,
i have a matrix A=[0 0 0;0.7 1 0.7] i want to remove the element 1 A(2,2) help please

Réponses (1)

Ronny Landsverk
Ronny Landsverk le 14 Avr 2019
If you want a representation of an empty element, use NaN (not a number).
A(2,2) = NaN;
  1 commentaire
Walter Roberson
Walter Roberson le 14 Avr 2019
And if replacing the location with some set value such as NaN or -9999 is not appropriate, then you have the problem that rectangular arrays cannot have "holes" in them.

Connectez-vous pour commenter.

Catégories

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