how to clean data by deleting [0 0]

1 visualizzazione (ultimi 30 giorni)
abdullah al-dulaimi
abdullah al-dulaimi il 30 Giu 2022
Modificato: Jonas il 30 Giu 2022
I have a data AB=[1 2
3 4
5 6
0 7
8 0
0 0
9 0
0 10
0 0]
I want to delete [0 0], so the result will be
[1 2
3 4
5 6
0 7
8 0
9 0
0 10]

Risposta accettata

Jonas
Jonas il 30 Giu 2022
Modificato: Jonas il 30 Giu 2022
use
rowsToDelete=~any(AB,2);
or
rowsToDelete=all(~AB,2);
AB(rowsToDelete,:)=[];
or
rowsToKeep=any(AB,2);
AB=AB(rowsToKeep,:);

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by