How to extract indices with a condition?
64 views (last 30 days)
Show older comments
For example I have Y = X(X==42), but I need the indices also!
2 Comments
rbih rbih
on 12 Jun 2020
hi Mr M. i just wondering about the value that you're searching index for (42), isn't that related to the quiz of rigid body kinematics course (Concept Check 9 - Euler Angle Differential Kinematic Equations) on coursera!
just for fun, have a good day.
Accepted Answer
More Answers (1)
Walter Roberson
on 26 Mar 2018
find(X==42) and store in a variable. Then X(that_variable)
10 Comments
Walter Roberson
on 29 Feb 2024
setdiff(1:numels(X), ind0)
returns all the indices of X that do not appear in ind0
It is questionable whether this will be any faster than
X(X ~= 0)
but the original poster wanted a different way.
See Also
Categories
Find more on Matrix Indexing 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!