Fortran.MinExponent Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

MinExponent(Double) Gets the smallest possible exponent of a floating-point number.
MinExponent(Single) Gets the smallest possible exponent of a floating-point number.

MinExponent(Double)

Gets the smallest possible exponent of a floating-point number.
C#
public static int MinExponent(
	double x
)

Parameters

x  Double
A dummy real number.

Return Value

Int32
Always returns -1021.

MinExponent(Single)

Gets the smallest possible exponent of a floating-point number.
C#
public static int MinExponent(
	float x
)

Parameters

x  Single
A dummy real number.

Return Value

Int32
Always returns -125.

See Also