Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道有两个函数'fix'和'round'可以将十进制转换为整数。但是,我找不到将任何十进制数四舍五入到下一个整数的方法。任何人都知道如何做到这一点。
例如,我想将 1.1 转换为 2、3.01 转换为 4、4.009 转换为 5 或任何十进制数。
谢谢你。
这是天花板函数,matlab ceil:
ceil
>> ceil(1.1) ans = 2 >> ceil(3.01) ans = 4 >> ceil(4.009) ans = 5