Problem 645. Getting the indices from a vector
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
Show
2 older comments
Kerem Kutan
on 12 Jun 2020
kinda easy
Miriam Sánchez Fernández
on 7 Nov 2020
It's easy with function "find"
Benjamin Hoehne
on 1 Dec 2020
use "find"
Solution Comments
Show commentsGroup

Cody Challenge
- 12 Problems
- 465 Finishers
- Add two numbers
- Find the sum of all the numbers of the input vector
- Quote Doubler
- De-dupe
- Cell joiner
- Remove all the words that end with "ain"
- Nearest Numbers
- Find state names that start with the letter N
- Word Counting and Indexing
- Given two arrays, find the maximum overlap
- It dseon't mettar waht oedrr the lrettes in a wrod are.
- Counting in Finnish
Problem Recent Solvers10356
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!