Is there any function in MATLAB, which would round the values to nearest big integers?

1 次查看(过去 30 天)
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

采纳的回答

madhan ravi
madhan ravi 2018-12-5
编辑:madhan ravi 2018-12-5
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
>>

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by