1)fix(x) : 截尾取整.
>>fix(37/10)
ans =
3
(2)floor(x):不超过x 的最大整数.(高斯取整)
>>floor(5.6)
ans =
5
(3)ceil(x) : 大于x 的最小整数
>> ceil(4/6)
ans =
1
(4)四舍五入取整
>>round(4/6)
ans =
1
>> round(2/6)
ans =
0
1)fix(x) : 截尾取整.
>>fix(37/10)
ans =
3
(2)floor(x):不超过x 的最大整数.(高斯取整)
>>floor(5.6)
ans =
5
(3)ceil(x) : 大于x 的最小整数
>> ceil(4/6)
ans =
1
(4)四舍五入取整
>>round(4/6)
ans =
1
>> round(2/6)
ans =
0