How to find next number divisible by n

48 ビュー (過去 30 日間)
Pedro Oliveira
Pedro Oliveira 2017 年 11 月 22 日
コメント済み: Pedro Oliveira 2017 年 11 月 22 日
Hi, I have a number 'a' and I want to find the next number 'b' that is divisible by a certain n (if 'a' isn't divisible by n).
Initially I was doing it like below:
b = a + rem(a,n)
But I noticed that it gives the distance to the closest number that is divisible by n. In the specific example of being a = 14 and n = 4, rem(a,n) gives 2 since the closes number divisble by 4 is 12. Thus b will be 14 (not divisible by 4) instead of 16, as originally intended.
Thank you for any help you can provide.

採用された回答

Torsten
Torsten 2017 年 11 月 22 日
b = a + (n - rem(a,n))
Best wishes
Torsten.
  1 件のコメント
Pedro Oliveira
Pedro Oliveira 2017 年 11 月 22 日
This works! Thank you!

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

その他の回答 (1 件)

David J. Mack
David J. Mack 2017 年 11 月 22 日
How about
b = n * ceil(a / n)
Greetings, David
  1 件のコメント
Pedro Oliveira
Pedro Oliveira 2017 年 11 月 22 日
This also works! Thank you! I didn't know the ceil function but I'll look into it.

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

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by