关于Matlab里面的四个取整(舍入)函数:Floor, Ceil, Fix, Round的解释(转)

转自http://blog.sina.com.cn/s/blog_48ebd4fb010009c2.html

floor:朝负无穷方向舍入

B = floor(A) rounds the elements of A to the nearest integers less than or equal to A.

ceil:朝正无穷方向舍入

B = ceil(A) rounds the elements of A to the nearest integers greater than or equal to A.

fix:朝零方向舍入

B = fix(A) rounds the elements of A toward zero, resulting in an array of integers.

round:四舍五入

B = round(A) rounds the elements of X to the nearest integers.

Example:

a=       [-0.9,  -2.1,  -0.4,  0.3,  0.8,  1.1,  2.7,  -1.2+2.9i];

floor(a)=[ -1,    -3,    -1,    0,    0,    1,    2,     -2+2i]

ceil(a)= [ 0,     -2,     0,    1,    1,    2,    3,     -1+3i]

fix(a)=  [ 0,     -2,     0,    0,    0,    1,    2,     -1+2i]

round(a)=[-1,     -2,     0,    0,    1,    1,    3,     -1+3i]

注:For complex X, for all the four fuctions the imaginary and real parts are rounded independently.

时间: 2024-10-07 15:00:13

关于Matlab里面的四个取整(舍入)函数:Floor, Ceil, Fix, Round的解释(转)的相关文章

matlab 对矩阵取整的函数

Matlab取整函数有: fix, floor, ceil, round.取整函数在编程时有很大用处.一.取整函数1.向零取整(截尾取整)fix-向零取整(Round towards zero):>> fix(3.6)   ans =     32.向负无穷取整(不超过x 的最大整数-高斯取整)floor-向负无穷取整(Round towards minus infinity):>> floor(-3.6)  ans =    -43.向正无穷取整(大于x 的最小整数)ceil-向

java的四种取整方法

java 中取整操作提供了四种方法:分别是: public static double ceil(double a)//向上取整  public static double floor(double a)//向下取整  public static long round(double a)//四舍五入取整  public static double rint(double a)//最近取整   第一种:ceil是天花板的意思,表示向上取整.   测试: System.out.println(Mat

JS中对小数取整的函数

1.丢弃小数部分,保留整数部分 js:parseInt(7/2) 2.向上取整,有小数就整数部分加1 js: Math.ceil(7/2) 3,四舍五入. js: Math.round(7/2) 4,向下取整 js: Math.floor(7/2) MATH 对象的方法 FF: Firefox, N: Netscape, IE: Internet Explorer 方法 描述 FF N IE abs(x) 返回数的绝对值 1 2 3 acos(x) 返回数的反余弦值 1 2 3 asin(x)

js 中小数取整的函数

1.丢弃小数部分,保留整数部分 js:parseInt(7/2) 2.向上取整,有小数就整数部分加1 js: Math.ceil(7/2) 3,四舍五入. js: Math.round(7/2) 4,向下取整 js: Math.floor(7/2)

Oracle取整的函数

1.取整(大) select ceil(-1.001) value from dual 2.取整(小) select floor(-1.001) value from dual 3.取整(截取) select trunc(-1.002) value from dual 4.取整(舍入) select round(-1.001) value from dual

js 小数取整的函数

1.丢弃小数部分,保留整数部分 js:parseInt(7/2) 2.向上取整,有小数就整数部分加1 js: Math.ceil(7/2) 3,四舍五入. js: Math.round(7/2) 4,向下取整 js: Math.floor(7/2)

js只保留整数,向上取整,四舍五入,向下取整等函数

1.丢弃小数部分,保留整数部分parseInt(5/2)2.向上取整,有小数就整数部分加1Math.ceil(5/2)3,四舍五入.Math.round(5/2) 1.丢弃小数部分,保留整数部分parseInt(5/2) 2.向上取整,有小数就整数部分加1 Math.ceil(5/2) 3,四舍五入. Math.round(5/2) 4,向下取整 Math.floor(5/2) Math 对象的方法 方法 描述 abs(x) 返回数的绝对值 acos(x) 返回数的反余弦值 asin(x) 返回

sql取整的函数

SQL取整操作2009年04月02日 星期四 10:01以前有记录过这个方法的使用说明,不过今天再用的时候还是忘记了,其实平时用的取整操作有几种情况,一种是单纯的取整,不管小数点后面是什么全部舍去比如12.21或者12.68都是12,这样就用floor(12.21),里面的参数可以是表达式.可以是数字.可以是变量:另外就是有不同限制的取整操作,如需要四舍五入并且小数点后面保留多少有效位的话就是round函数了,完全的写法是: ROUND ( numeric_expression , length

关于数字取整、四舍五入

在做购物车中,涉及购物车小计 产品价格为有两位小数的浮点数,在购物车页面上从后台获取数据商品数量及商品价格,在js中做计算显示到页面 出现例如: 的情况. 解决:采用toFixed();方法进行处理. //异步加载购物车详情 $(function(){ html=""; $.ajax({ type:'POST', data:{uname:sessionStorage['loginName']}, url:'../data/cart_detail_page.php', success:f