Given a row vector of numbers, find the indices of the two nearest numbers.
Examples:
[index1 index2] = nearestNumbers([2 5 3 10 0 -3.1])
index1 =
1
index2 =
3[index1 index2] = nearestNumbers([-40 14 22 17])
index1 =
2
index2 =
4Notes
- The indices should be returned in order such that index2 > index1.
- There will always be a unique solution.
Solution Stats
Problem Comments
4 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers5141
Suggested Problems
-
Return the 3n+1 sequence for n
8526 Solvers
-
Create a cell array out of a struct
2574 Solvers
-
Create matrix of replicated elements
402 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
405 Solvers
-
Matlab Basics - Convert a row vector to a column vector
684 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Best score without using Neural Net Toolbox is 38
123 lol.
It took me half an hour to solve test 4.
pretty simple