Single.Epsilon Field
Represents the smallest positive Single value that is greater than zero. This field is constant.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
The value of the Epsilon property reflects the smallest positive Single value that is significant in numeric operations or comparisons when the value of the Single instance is zero. For example, the following code shows that zero and Epsilon are considered to be unequal values, whereas zero and half the value of Epsilon are considered to be equal.
using System; public class Example { public static void Main() { float[] values = { 0f, Single.Epsilon, Single.Epsilon * .5f }; for (int ctr = 0; ctr <= values.Length - 2; ctr++) { for (int ctr2 = ctr + 1; ctr2 <= values.Length - 1; ctr2++) { Console.WriteLine("{0:r} = {1:r}: {2}", values[ctr], values[ctr2], values[ctr].Equals(values[ctr2])); } Console.WriteLine(); } } } // The example displays the following output: // 0 = 1.401298E-45: False // 0 = 0: True // // 1.401298E-45 = 0: False
However, the Epsilon property is not a general measure of precision of the Single type; it applies only to Single instances that have a value of zero.
Note |
|---|
The value of the Epsilon property is not equivalent to machine epsilon, which represents the upper bound of the relative error due to rounding in floating-point arithmetic. |
The value of this constant is 1.4e-45.
Two apparently equivalent floating-point numbers might not compare equal because of differences in their least significant digits. For example, the C# expression, (float)1/3 == (float)0.33333, does not compare equal because the division operation on the left side has maximum precision while the constant on the right side is precise only to the specified digits. If you create a custom algorithm that determines whether two floating-point numbers can be considered equal, you must use a value that is greater than the Epsilon constant to establish the acceptable absolute margin of difference for the two values to be considered equal. (Typically, that margin of difference is many times greater than Epsilon.)
Platform Notes
On ARM systems, the value of the Epsilon constant is too small to be detected, so it equates to zero. You can define an alternative epsilon value that equals 1.175494351E-38 instead.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note