Scilab-Branch-5.3-GIT
Please note that the recommended version of Scilab is 6.1.0. This page might be outdated.
See the recommended documentation of this function
round
arredondamento para inteiro mais próximo
Seqüência de Chamamento
y=round(x)
Parâmetros
- x
matriz de reais ou complexos
- y
matriz de inteiros ou complexos (com partes reais e imaginárias inteiras )
Descrição
round(x)
arredonda os elementos de
x
para os inteiros mais próximos.
Exemplos
round([1.9 -2.5])-[2,-3] round(1.6+2.1*%i)-(2+2*%i) round(-%inf) x=rand()*10^20;round(x)-x
Comments
Add a comment:
Please login to comment this page.