| 查看: 420 | 回复: 1 | ||
xinji铜虫 (小有名气)
|
[求助]
Matlab中有没有表示四射五入的函数
|
|
Matlab中有没有表示四射五入的函数??? 就像Fortran中的nint()函数。 |
» 猜你喜欢
体制内长辈说体制内绝大部分一辈子在底层,如同你们一样大部分普通教师忙且收入低
已经有18人回复
面上可以超过30页吧?
已经有7人回复
网上报道青年教师午睡中猝死、熬夜猝死的越来越多,主要哪些原因引起的?
已经有5人回复
“人文社科而论,许多学术研究还没有达到民国时期的水平”
已经有6人回复
版面费该交吗
已经有13人回复
为什么中国大学工科教授们水了那么多所谓的顶会顶刊,但还是做不出宇树机器人?
已经有10人回复
什么是人一生最重要的?
已经有4人回复
» 本主题相关价值贴推荐,对您同样有帮助:
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













回复此楼