Fortran.Tiny Method

Definition

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

Overload List

Tiny(Double) Gets the smallest normal positive (non-zero) floating-point number.
Tiny(Single) Gets the smallest normal positive (non-zero) floating-point number.

Tiny(Double)

Gets the smallest normal positive (non-zero) floating-point number.
C#
public static double Tiny(
	double x
)

Parameters

x  Double
A dummy real number.

Return Value

Double
Always returns 2.2250738585072010E-308.

Remarks

Note that this is the smallest normal number. Denormalized numbers, which don't use the standard exponential format, can be smaller.

Tiny(Single)

Gets the smallest normal positive (non-zero) floating-point number.
C#
public static float Tiny(
	float x
)

Parameters

x  Single
A dummy real number.

Return Value

Single
Always returns 1.1754944e-38.

Remarks

Note that this is the smallest normal number. Denormalized numbers, which don't use the standard exponential format, can be smaller.

See Also