Problem 55230. Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1,
, e, π,
(also known as τ).
For example:
c = closestconst(1.5)
c =
1.4142
c = closestconst(2.5)
c =
2.7183
c = closestconst(50)
c =
6.2832
c = closestconst(-10)
c =
0
If x is equally close to two values (eg
), you can return either value (so either 1 or
would be correct in this example).
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers525
Suggested Problems
-
Given two arrays, find the maximum overlap
1608 Solvers
-
How to find the position of an element in a vector without using the find function
2752 Solvers
-
1570 Solvers
-
906 Solvers
-
268 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!