Remove element from array but want to keep in indices
Afficher commentaires plus anciens
A=[1 2;1 5;2 3;2 4;2 5;3 4;4 5;4 7;4 9;5 6;6 11;6 12;6 13; 7 8;7 9;9 10;9 14;10 11;12 13;13 14] I omit the second row: A(2,:)=[]; so size A changes to 19*2 and [2,3] changes to my second element. If I want to keep [2,3] as a third element, what should I do?
1 commentaire
KALYAN ACHARJYA
le 9 Oct 2018
Can you elaborate your question exactly? Use Maths to explain your problem.
Réponses (3)
Andrei Bobrov
le 9 Oct 2018
A(2,:)=nan;
2 commentaires
NA
le 9 Oct 2018
Walter Roberson
le 9 Oct 2018
No, that is a validation routine from the Graph Theory Toolbox from the file exchange, and that Toolbox does not support omitted elements.
Walter Roberson
le 9 Oct 2018
0 votes
To keep that row as being the third row... don't remove the second row.
The alternative is to use containers.map to create mappings between subscripts and values. Then when you delete keys from the map, the remaining items would keep the same keys.
.... But what you probably need to hear is:
Run your loop backwards so that you delete rows starting from the end. The rows after will "fall down" into the earlier slots, but that is okay because next iteration you will be examining a slot that has not had an opportunity to fall down because it was below all slots you looked at before that.
madhan ravi
le 9 Oct 2018
Modifié(e) : madhan ravi
le 9 Oct 2018
A(2,:)=0
Did it work?
3 commentaires
NA
le 9 Oct 2018
madhan ravi
le 9 Oct 2018
Can you upload your code!
Walter Roberson
le 9 Oct 2018
That toolbox does not support omitted nodes.
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!