extracting positive numbers?

10 views (last 30 days)
AR
AR on 16 Dec 2015
Edited: Stephen23 on 17 Dec 2015
I have a vector, X [197 1] which has values of 0 or positive numbers. I'd like to identify those indexes with only positive numbers as well as only use those values later in an algorithm? How best can I do this? Thank you.

Accepted Answer

dpb
dpb on 16 Dec 2015
x=x(x>0);
Look for "logical addressing" in documentation...

More Answers (0)

Community Treasure Hunt

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

Start Hunting!