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

1 Ansicht (letzte 30 Tage)
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

Akzeptierte Antwort

madhan ravi
madhan ravi am 5 Dez. 2018
Bearbeitet: madhan ravi am 5 Dez. 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
>>

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by