Write a script to round a variable x to 3 decimal places:
e.g. x = 2.3456 --> y = 2.346
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers5841
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2818 Solvers
-
Create a cell array out of a struct
2552 Solvers
-
Return the first and last characters of a character array
12244 Solvers
-
1645 Solvers
-
Find out sum and carry of Binary adder
1772 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
nice
but this problem is not in 2013 and downer versions
answer:y = round(x,3)
why roundn not work?
@arsenic 陈: roundn is a toolbox function. Cody only supports functions in basic MATLAB.