在matlab中,round、ceil、floor、fix都是取整函数函数,
round函数是个四舍五入函数,例:round(2.7)=3; round(1.2)=1; round(-1.3)=-1
ceil函数是大于X的最小整数,例:ceil(2.3)=3;ceil(-2.3)=-2
floor函数是不超过X的最大整数,例:floor(2.3)=2; floor(-2.3)=-3
fix函数是截尾取零,例:fix(3.7)=3; fix(3.2)=3; fix(-3.2)=-3
在matlab中,round、ceil、floor、fix都是取整函数函数,
round函数是个四舍五入函数,例:round(2.7)=3; round(1.2)=1; round(-1.3)=-1
ceil函数是大于X的最小整数,例:ceil(2.3)=3;ceil(-2.3)=-2
floor函数是不超过X的最大整数,例:floor(2.3)=2; floor(-2.3)=-3
fix函数是截尾取零,例:fix(3.7)=3; fix(3.2)=3; fix(-3.2)=-3