Main Content
minlog
Log minimums
Syntax
y = minlog(a)
y = minlog(q)
Description
y = minlog(a)
returns the smallest real-world
value of fi
object a
since logging
was turned on or since the last time the log was reset for the object.
Turn on logging by setting the fipref
object LoggingMode
property
to on
. Reset logging for a fi
object
using the resetlog
function.
y = minlog(q)
is the minimum value after
quantization during a call to quantize(q,...)
for quantizer
object q
.
This value is the minimum value encountered over successive calls
to quantize
since logging was turned on, and is
reset with resetlog(q)
. minlog(q)
is
equivalent to get(q,'minlog')
and q.minlog
.
Examples
Version History
Introduced before R2006a
See Also
fipref
| maxlog
| noverflows
| nunderflows
| reset
| resetlog