realmin
Smallest positive normalized fixed-point value or quantized number
Syntax
x=realmin(a)
x=realmin(q)
Description
x=realmin(a)
is the smallest positive real-world
value that can be represented in the data type of fi
object a
.
Anything smaller than x
underflows or is an IEEE® “denormal”
number.
x=realmin(q)
is the smallest positive normal
quantized number where q
is a quantizer
object.
Anything smaller than x
underflows or is an IEEE “denormal”
number.
Examples
q = quantizer('float',[6 3]);
x = realmin(q)
x = 0.25
Algorithms
If q
is a floating-point quantizer
object, where is the minimum
exponent.
If q
is a signed or unsigned fixed-point quantizer
object, where f is
the fraction length.
Extended Capabilities
Version History
Introduced before R2006a
See Also
eps
| exponentmax
| exponentmin
| fractionlength
| intmax
| intmin
| lowerbound
| lsb
| range
| realmax
| upperbound