Complex.IsInfinity(Complex) メソッド
定義
指定した複素数が無限大と評価されるかどうかを示す値を返します。Returns a value indicating whether the specified complex number evaluates to infinity.
public:
static bool IsInfinity(System::Numerics::Complex value);
public static bool IsInfinity (System.Numerics.Complex value);
static member IsInfinity : System.Numerics.Complex -> bool
Public Shared Function IsInfinity (value As Complex) As Boolean
パラメーター
- value
- Complex
複素数。A complex number.
戻り値
実数部または虚数部のどちらかが PositiveInfinity または NegativeInfinity の場合は true
、それ以外の場合は false
。true
if either, the real or imaginary part are PositiveInfinity or NegativeInfinity; otherwise, false
.