remove obsevations with x=0

1 visualizzazione (ultimi 30 giorni)
alpedhuez
alpedhuez il 1 Giu 2020
Risposto: KSSV il 1 Giu 2020
I have a pair of observations I just want to choose the pairs that . Is there any simpler way than writing a loop?

Risposta accettata

KSSV
KSSV il 1 Giu 2020
Let A be your 100*2 data. With first column as x and second column as y.
idx = A(:,1)>0 ; % get logical indices of x which are > 0
iwant = A(idx,:) ;

Più risposte (0)

Categorie

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

Tag

Prodotti


Release

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by