Complex<T>.IsFinite Method

Indicates whether a complex number is finite.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.6
C#
public static bool IsFinite(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Boolean
true if the real and imaginary parts of z are finite; otherwise false.

Remarks

Directed infinities are currently not supported.

See Also