This is a basic MATLAB operation. It is for instructional purposes.
---
You may already know how to find the logical indices of the elements of a vector that meet your criteria.
This exercise is for finding the index of indices that meet your criteria. The difference is this:
vec = [11 22 33 44];
thresh = 25;
vi = (vec > thresh)
vi =
0 0 1 1
What we are looking for now is how to get the values
x =
3 4
Because those are the indices where the binary comparison is true.
Given a vector, vec, return the indices where vec is greater than scalar, thresh.
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers11769
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52678 Solvers
-
Program an exclusive OR operation with logical operators
750 Solvers
-
Return unique values without sorting
999 Solvers
-
Get the length of a given vector
12890 Solvers
-
671 Solvers
More from this Author51
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I added six more test cases.
hay
kinda easy
It's easy with function "find"
use "find"