Based on a question on MATLAB Answers.
Find all the elements of a vector whose difference, regardless of position is less or equal than a given range.
Example
A = [1 4 7 10 2 8]; range = 1; inrange = [1 0 1 0 1 1]; % since diff(1, 2) <= 1 and diff(7, 8) <= 1
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers74
Suggested Problems
-
117440 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2070 Solvers
-
given 3 sides, find area of this triangle
823 Solvers
-
Getting the indices from a vector
12422 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
523 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I love the fact that you based this on a question from Answers! I kind of wanted to link back to it, but I can see that you might not want people to see your answer.