A rounding problem that falls under ceil and round

2 ビュー (過去 30 日間)
SETH GERSBACH
SETH GERSBACH 2022 年 3 月 20 日
コメント済み: SETH GERSBACH 2022 年 3 月 20 日
I would like to round a number up to the nearest 100 place
i.e
x = 20
y = round(x)
y = 100
I'm doing this to record the maximun possible value, I know ceil will always round up but I can't set it to a set value
here is the current code
distance = 50; % Distance the package will travel (Km)
distnace_check = round(distance,-2);

採用された回答

AndresVar
AndresVar 2022 年 3 月 20 日
編集済み: AndresVar 2022 年 3 月 20 日
How about
x=[0 20 50 100 101 900 901 1234]; % test numbers
y = ceil(x/100)*100
y = 1×8
0 100 100 100 200 900 1000 1300
  1 件のコメント
SETH GERSBACH
SETH GERSBACH 2022 年 3 月 20 日
Thank you, it does work and I now understand how.
By dividing the value by 100, it then ceil makes the value below a decimal point to round up to the desired value before converting back to the 100 place.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeElectrical Block Libraries についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by