| 查看: 490 | 回复: 1 | ||
xinji铜虫 (小有名气)
|
[求助]
Matlab中有没有表示四射五入的函数
|
|
Matlab中有没有表示四射五入的函数??? 就像Fortran中的nint()函数。 |
» 猜你喜欢
filecode变化情况
已经有16人回复
大家散了吧,后缀研究没有意义,别浪费时间了,过好目前的每一天,不要焦虑
已经有7人回复
关于豆爷回答的JTJC与%2F数量
已经有6人回复
面上再次挂了,太难了,躺也躺不了,倦也卷不过,小学校之殇!
已经有31人回复
filecode
已经有19人回复
基金中了
已经有11人回复
听说今天filecode变了
已经有44人回复
固定端突然变了,今天
已经有8人回复
filecode
已经有11人回复
求各位大神看下
已经有33人回复
» 本主题相关价值贴推荐,对您同样有帮助:
matlab的函数调用问题
已经有3人回复
MATLAB中产生高斯白噪声,涉及到awgn和wgn函数
已经有3人回复
问个关于matlab里find函数的问题!
已经有4人回复
请教个matlab中的rand函数
已经有3人回复
matlab做函数图象的问题
已经有6人回复

【答案】应助回帖
★ ★ ★ ★ ★ ★ ★
感谢参与,应助指数 +1
臭水沟: 金币+2, 谢谢交流~~ 2012-05-08 09:31:17
xinji: 金币+5, ★★★很有帮助 2012-05-08 17:16:00
感谢参与,应助指数 +1
臭水沟: 金币+2, 谢谢交流~~ 2012-05-08 09:31:17
xinji: 金币+5, ★★★很有帮助 2012-05-08 17:16:00
|
round()函数就可以。 B = floor(A) rounds the elements of A to the nearest integers less than or equal to A. For complex A, the imaginary and real parts are rounded independently. (floor:朝负无穷方向舍入) B = ceil(A) rounds the elements of A to the nearest integers greater than or equal to A. For complex A, the imaginary and real parts are rounded independently. (ceil:朝正无穷方向舍入) B = fix(A) rounds the elements of A toward zero, resulting in an array of integers. For complex A, the imaginary and real parts are rounded independently. (fix:朝零方向舍入 ) B = round(A) rounds the elements of X to the nearest integers. For complex X, the imaginary and real parts are rounded independently. (round:四舍五入) |

2楼2012-05-07 23:08:50










回复此楼
100