On 10 Apr., 19:51, Ken <ken.al
...@sbcglobal.net> wrote:
> Is there a way to get various machine precision parameters for the
> currrent precision in mpmath? I know these parameters can be queried
> for standard precision Python using the sys module. For mpmath, I
> know you can get eps, digits, and precision, but is there a way to get
> other values like Huge, Tiny, Minexponent, Maxexponent, etc.?
Please note that exponents in mpmath are Python (or GMP) longs, which
means they are basically unlimited in size. The precision only affects
the mantissa. Because of this, values like Minexponent don't make
sense.
I hope this helps,
Vinzent