Scilab 5.5.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
round
丸め処理
呼び出し手順
y=round(x)
パラメータ
- x
- 実数または複素数の行列r 
- y
- 整数または複素数 (実部と虚部は整数) の行列 
説明
round(x) は
            x の要素を最も近い整数に丸めます.
例
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
| Report an issue | ||
| << number_properties | Floating point | Integer representation >> |