Scilab 5.3.3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isinf
無限大のエントリかどうかを調べる
呼び出し手順
r=isinf(x)
パラメータ
- x
実数または複素数のベクトルまたは行列 r : 論理値のベクトルまたは行列
説明
isinf(x)
は,
x
の無限大のエントリに対応するエントリに真,
x
の有限のエントリに対応するエントリに偽を含む
論理値のベクトルまたは行列を返します.
例
isinf([1 0.01 -%inf %inf])
参照
- isnan — "Not a Number" エントリを調べる
<< int | Floating point | isnan >> |