Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
fix
0方向への丸め
呼び出し手順
y=fix(x)
引数
- x
実数または複素数の行列
- y
整数行列(または整数の実部と虚部を有する複素数行列)
説明
fix(x)
は,0 方向に丸めた最も近い整数からなる
整数行列,すなわち,y=sign(x).*floor(abs(x))
を返します,
int
と同じです.
例
fix([1.3 1.5 1.7 2.5 3.7]) // 負のxに関する結果に注意 fix([-1.3 -1.5 -1.7 -2.5 -3.7]) fix([2.2+%i*23, %pi*%i, -%i ])
Report an issue | ||
<< double | Floating point | floor >> |