matlab基础函数

一、取整函数fix, floor, ceil, round.
fix朝零方向取整,floor朝负无穷方向取整,ceil即朝正无穷方向取整
round四舍五入到最近的整数;


x =

  Columns 1 through 7

    3.0000    3.1000    3.5000    3.6000    3.9000   -3.1000   -3.5000

  Columns 8 through 9

   -3.6000   -3.9000

floor(x)
ans =

     3     3     3     3     

你可能感兴趣的:(数字图像处理)