remove obsevations with x=0
1 view (last 30 days)
Show older comments
I have a pair of observations
I just want to choose the pairs that
. Is there any simpler way than writing a loop?


0 Comments
Accepted Answer
KSSV
on 1 Jun 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,:) ;
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!