Discussion 解説
This is the unit of the least significant digit in this value’s significand. For most numbers x
, this is the difference between x
and the next greater (in magnitude) representable number. There are some edge cases to be aware of:
これはこの値の仮数の中の最下位数の単位です。ほとんどの数x
に対して、これはx
と次の(規模における)より大きい表現可能な数との間の差異です。知られているいくつかの境界事例があります:
If
x
is not a finite number, thenx
is NaN..ulp x
が有限数でないならば、そのときx
はNaNです。.ulp If
x
is very small in magnitude, thenx
may be a subnormal number. If a type does not support subnormals,.ulp x
may be rounded to zero..ulp x
が規模において非常に小さいならば、x
はサブノーマル数かもしれません。ある型がサブノーマルをサポートしないならば、.ulp x
はゼロに丸められるかもしれません。.ulp greatest
is a finite number, even though the next greater representable value isFinite Magnitude .ulp infinity
.greatest
は有限数です、たとえ次のより大きい表現可能な値がFinite Magnitude .ulp infinity
であるとしても。
See also the ulp
static property.
またulp
静的プロパティを見てください。