Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point number to n decimals. There are 2 inputs to the function: x: floating point number and n: number of decimals which need to match with the given solutions.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers5717
Suggested Problems
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2050 Solvers
-
1761 Solvers
-
Longest run of consecutive numbers
6598 Solvers
-
427 Solvers
-
Relative ratio of "1" in binary number
1654 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!
easy
y = round(x,n)
Good