撒科打诨
Oracle Round 函数 (四舍五入),是指传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果。使用方法SELECT ROUND( number, [ decimal_places ] ) FROM DUAL其中number 为待做截取处理的数值。decimals 指明需保留小数点后面的位数。可选项,忽略它则截去所有的小数部分,并四舍五入。如果为负数则表示从小数点开始左边的位数,相应整数数字用0填充,小数被去掉。需要注意的是,和trunc函数不同,对截取的数字要四舍五入。参数:number : 欲处理之数值decimal_places : 四舍五入 , 小数取几位 ( 预设为 0 )Sample :select round(123.456, 0) from dual; -----回传 123select round(123.456, 1) from dual;-----回传 123.5select round(123.456, 2) from dual; -----回传 123.46select round(123.456, 3) from dual; -----回传 123.456扩展资料MATLAB函数简介调用格式:Y = round(X)在matlab中round也是一个四舍五入函数。在matlab的命令窗口中输入doc round或者help round即可获得该函数的相关帮助信息。程序示例>>a = [-1.9,-0.2,3.4,5.6,7.0,2.4+3.6i]a =Columns 1 through 4-1.9000 -0.2000 3.4000 5.6000Columns 5 through 6⒎0000 2.4000 + 3.6000i>>round(a)ans =Columns 1 through 4-2.0000 0 3.0000 6.0000Columns 5 through 6⒎0000 2.0000 + 4.0000ia =Columns 1 through 4-1.9000 -0.2000 3.4000 5.6000Columns 5 through 6⒎0000 2.4000 + 3.6000i