Complex.IsFinite(Complex) メソッド
定義
指定した複素数が有限かどうかを判定します。Determines whether the specified complex number is finite.
public:
static bool IsFinite(System::Numerics::Complex value);
public static bool IsFinite (System.Numerics.Complex value);
static member IsFinite : System.Numerics.Complex -> bool
Public Shared Function IsFinite (value As Complex) As Boolean
パラメーター
- value
- Complex
複素数。A complex number.
戻り値
実数部と虚数部の両方が有限 (ゼロ、非正規、または正規) の場合は true
、それ以外の場合は false
。true
if both, the real and imaginary parts are finite (zero, subnormal or normal); otherwise, false
.