Given a vector of integers and a real number find the closest integer.
EX:
>> a = [2 4 5 6 8 10];
>> b = 4.6;
>> nearestNumber(a,b)
ans=5
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers369
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6694 Solvers
-
Increment a number, given its digits
684 Solvers
-
Back to basics 21 - Matrix replicating
1797 Solvers
-
Flip the main diagonal of a matrix
905 Solvers
-
1046 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I think you have to improve the test suite