Is there any function in MATLAB, which would round the values to nearest big integers?
1 view (last 30 days)
Show older comments
raghavendra kandukuri
on 5 Dec 2018
Commented: madhan ravi
on 5 Dec 2018
I am looking for a function or proceudre, which would convert the given value to nearest big value, for example:
Input: Expected OUTPUT:
2598 2600
2499 2500
2399 2400
2299 2300
2199 2200
2099 2100
1999 2000
1898 2000
1797 1800
0 Comments
Accepted Answer
madhan ravi
on 5 Dec 2018
Edited: madhan ravi
on 5 Dec 2018
Yes use round()
inputs=[2598
2499
2399
2299
2199
2099
1999
1898
1797]
round(inputs./100)*100
command window:
inputs =
2598
2499
2399
2299
2199
2099
1999
1898
1797
ans =
2600
2500
2400
2300
2200
2100
2000
1900
1800
>>
2 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!