Elementary.Is Infinite Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
IsInfinite( | Returns whether the specified double-precision floating-point number equals positive or negative infinity. |
IsInfinite( | Returns whether the specified float-precision floating-point number equals positive or negative infinity. |
IsInfinite(Double)
Returns whether the specified double-precision floating-point number equals positive or negative infinity.
public static bool IsInfinite(
double x
)
Parameters
- x Double
- A double-precision floating-point number.
Return Value
Booleantrue if x is not NaN and not infinite; otherwise false.
Remarks
This method is significantly faster than the IsNaN(Double) method in many situations.
IsInfinite(Single)
Returns whether the specified float-precision floating-point number equals positive or negative infinity.
public static bool IsInfinite(
float x
)
Parameters
- x Single
- A float-precision floating-point number.
Return Value
Booleantrue if x is not NaN and not infinite; otherwise false.
Remarks
This method is significantly faster than the IsNaN(Double) method in many situations.