2004-07-05 02:52:03 -03:00
|
|
|
\section{\module{decimal} ---
|
|
|
|
Decimal floating point arithmetic}
|
|
|
|
|
|
|
|
\declaremodule{standard}{decimal}
|
|
|
|
\modulesynopsis{Implementation of the General Decimal Arithmetic
|
|
|
|
Specification.}
|
|
|
|
|
|
|
|
\moduleauthor{Eric Price}{eprice at tjhsst.edu}
|
|
|
|
\moduleauthor{Facundo Batista}{facundo at taniquetil.com.ar}
|
|
|
|
\moduleauthor{Raymond Hettinger}{python at rcn.com}
|
|
|
|
\moduleauthor{Aahz}{aahz at pobox.com}
|
|
|
|
\moduleauthor{Tim Peters}{tim.one at comcast.net}
|
|
|
|
|
|
|
|
\sectionauthor{Raymond D. Hettinger}{python at rcn.com}
|
|
|
|
|
|
|
|
\versionadded{2.4}
|
|
|
|
|
2004-07-09 03:13:12 -03:00
|
|
|
The \module{decimal} module provides support for decimal floating point
|
2004-07-05 02:52:03 -03:00
|
|
|
arithmetic. It offers several advantages over the \class{float()} datatype:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
|
|
|
\item Decimal numbers can be represented exactly. In contrast, numbers like
|
2004-07-11 09:40:19 -03:00
|
|
|
\constant{1.1} do not have an exact representation in binary floating point.
|
2004-07-12 10:22:14 -03:00
|
|
|
End users typically would not expect \constant{1.1} to display as
|
2004-07-05 02:52:03 -03:00
|
|
|
\constant{1.1000000000000001} as it does with binary floating point.
|
|
|
|
|
|
|
|
\item The exactness carries over into arithmetic. In decimal floating point,
|
|
|
|
\samp{0.1 + 0.1 + 0.1 - 0.3} is exactly equal to zero. In binary floating
|
|
|
|
point, result is \constant{5.5511151231257827e-017}. While near to zero, the
|
|
|
|
differences prevent reliable equality testing and differences can accumulate.
|
|
|
|
For this reason, decimal would be preferred in accounting applications which
|
|
|
|
have strict equality invariants.
|
|
|
|
|
|
|
|
\item The decimal module incorporates notion of significant places so that
|
|
|
|
\samp{1.30 + 1.20} is \constant{2.50}. The trailing zero is kept to indicate
|
|
|
|
significance. This is the customary presentation for monetary applications. For
|
|
|
|
multiplication, the ``schoolbook'' approach uses all the figures in the
|
|
|
|
multiplicands. For instance, \samp{1.3 * 1.2} gives \constant{1.56} while
|
|
|
|
\samp{1.30 * 1.20} gives \constant{1.5600}.
|
|
|
|
|
|
|
|
\item Unlike hardware based binary floating point, the decimal module has a user
|
|
|
|
settable precision (defaulting to 28 places) which can be as large as needed for
|
|
|
|
a given problem:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> getcontext().prec = 6
|
|
|
|
>>> Decimal(1) / Decimal(7)
|
|
|
|
Decimal("0.142857")
|
|
|
|
>>> getcontext().prec = 28
|
|
|
|
>>> Decimal(1) / Decimal(7)
|
|
|
|
Decimal("0.1428571428571428571428571429")
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
\item Both binary and decimal floating point are implemented in terms of published
|
|
|
|
standards. While the built-in float type exposes only a modest portion of its
|
|
|
|
capabilities, the decimal module exposes all required parts of the standard.
|
|
|
|
When needed, the programmer has full control over rounding and signal handling.
|
|
|
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
|
|
|
|
The module design is centered around three concepts: the decimal number, the
|
|
|
|
context for arithmetic, and signals.
|
|
|
|
|
|
|
|
A decimal number is immutable. It has a sign, coefficient digits, and an
|
|
|
|
exponent. To preserve significance, the coefficient digits do not truncate
|
|
|
|
trailing zeroes. Decimals also include special values such as
|
2004-07-09 07:02:53 -03:00
|
|
|
\constant{Infinity}, \constant{-Infinity}, and \constant{NaN}. The standard
|
|
|
|
also differentiates \constant{-0} from \constant{+0}.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
The context for arithmetic is an environment specifying precision, rounding
|
2004-07-11 09:40:19 -03:00
|
|
|
rules, limits on exponents, flags indicating the results of operations,
|
|
|
|
and trap enablers which determine whether signals are treated as
|
2004-07-05 02:52:03 -03:00
|
|
|
exceptions. Rounding options include \constant{ROUND_CEILING},
|
|
|
|
\constant{ROUND_DOWN}, \constant{ROUND_FLOOR}, \constant{ROUND_HALF_DOWN},
|
|
|
|
\constant{ROUND_HALF_EVEN}, \constant{ROUND_HALF_UP}, and \constant{ROUND_UP}.
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Signals are groups of exceptional conditions arising during the course of
|
|
|
|
computation. Depending on the needs of the application, signals may be
|
2004-07-05 02:52:03 -03:00
|
|
|
ignored, considered as informational, or treated as exceptions. The signals in
|
|
|
|
the decimal module are: \constant{Clamped}, \constant{InvalidOperation},
|
2004-07-09 07:02:53 -03:00
|
|
|
\constant{DivisionByZero}, \constant{Inexact}, \constant{Rounded},
|
2004-07-05 02:52:03 -03:00
|
|
|
\constant{Subnormal}, \constant{Overflow}, and \constant{Underflow}.
|
|
|
|
|
|
|
|
For each signal there is a flag and a trap enabler. When a signal is
|
2005-02-21 11:46:52 -04:00
|
|
|
encountered, its flag is incremented from zero and, then, if the trap enabler
|
2004-07-09 03:13:12 -03:00
|
|
|
is set to one, an exception is raised. Flags are sticky, so the user
|
|
|
|
needs to reset them before monitoring a calculation.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
\seetext{IBM's General Decimal Arithmetic Specification,
|
|
|
|
\citetitle[http://www2.hursley.ibm.com/decimal/decarith.html]
|
|
|
|
{The General Decimal Arithmetic Specification}.}
|
|
|
|
|
|
|
|
\seetext{IEEE standard 854-1987,
|
2004-07-08 06:22:33 -03:00
|
|
|
\citetitle[http://www.cs.berkeley.edu/\textasciitilde ejr/projects/754/private/drafts/854-1987/dir.html]
|
2004-07-05 02:52:03 -03:00
|
|
|
{Unofficial IEEE 854 Text}.}
|
|
|
|
\end{seealso}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Quick-start Tutorial \label{decimal-tutorial}}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The usual start to using decimals is importing the module, viewing the current
|
|
|
|
context with \function{getcontext()} and, if necessary, setting new values
|
|
|
|
for precision, rounding, or enabled traps:
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> from decimal import *
|
|
|
|
>>> getcontext()
|
|
|
|
Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
|
2004-07-11 09:40:19 -03:00
|
|
|
capitals=1, flags=[], traps=[Overflow, InvalidOperation,
|
|
|
|
DivisionByZero])
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
>>> getcontext().prec = 7 # Set a new precision
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2005-02-21 11:46:52 -04:00
|
|
|
Decimal instances can be constructed from integers, strings, or tuples. To
|
2004-07-08 06:22:33 -03:00
|
|
|
create a Decimal from a \class{float}, first convert it to a string. This
|
|
|
|
serves as an explicit reminder of the details of the conversion (including
|
2004-07-11 09:40:19 -03:00
|
|
|
representation error). Decimal numbers include special values such as
|
|
|
|
\constant{NaN} which stands for ``Not a number'', positive and negative
|
|
|
|
\constant{Infinity}, and \constant{-0}.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> Decimal(10)
|
|
|
|
Decimal("10")
|
2004-07-08 06:22:33 -03:00
|
|
|
>>> Decimal("3.14")
|
|
|
|
Decimal("3.14")
|
|
|
|
>>> Decimal((0, (3, 1, 4), -2))
|
2004-07-05 02:52:03 -03:00
|
|
|
Decimal("3.14")
|
|
|
|
>>> Decimal(str(2.0 ** 0.5))
|
|
|
|
Decimal("1.41421356237")
|
2004-07-08 06:22:33 -03:00
|
|
|
>>> Decimal("NaN")
|
2004-07-05 02:52:03 -03:00
|
|
|
Decimal("NaN")
|
2004-07-08 06:22:33 -03:00
|
|
|
>>> Decimal("-Infinity")
|
2004-07-05 02:52:03 -03:00
|
|
|
Decimal("-Infinity")
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
|
|
|
|
The significance of a new Decimal is determined solely by the number
|
|
|
|
of digits input. Context precision and rounding only come into play during
|
|
|
|
arithmetic operations.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> getcontext().prec = 6
|
|
|
|
>>> Decimal('3.0')
|
|
|
|
Decimal("3.0")
|
|
|
|
>>> Decimal('3.1415926535')
|
|
|
|
Decimal("3.1415926535")
|
|
|
|
>>> Decimal('3.1415926535') + Decimal('2.7182818285')
|
|
|
|
Decimal("5.85987")
|
|
|
|
>>> getcontext().rounding = ROUND_UP
|
|
|
|
>>> Decimal('3.1415926535') + Decimal('2.7182818285')
|
|
|
|
Decimal("5.85988")
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2005-02-21 11:46:52 -04:00
|
|
|
Decimals interact well with much of the rest of Python. Here is a small
|
2004-07-05 02:52:03 -03:00
|
|
|
decimal floating point flying circus:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> data = map(Decimal, '1.34 1.87 3.45 2.35 1.00 0.03 9.25'.split())
|
|
|
|
>>> max(data)
|
|
|
|
Decimal("9.25")
|
|
|
|
>>> min(data)
|
|
|
|
Decimal("0.03")
|
|
|
|
>>> sorted(data)
|
|
|
|
[Decimal("0.03"), Decimal("1.00"), Decimal("1.34"), Decimal("1.87"),
|
|
|
|
Decimal("2.35"), Decimal("3.45"), Decimal("9.25")]
|
|
|
|
>>> sum(data)
|
|
|
|
Decimal("19.29")
|
|
|
|
>>> a,b,c = data[:3]
|
|
|
|
>>> str(a)
|
|
|
|
'1.34'
|
|
|
|
>>> float(a)
|
|
|
|
1.3400000000000001
|
2004-07-14 18:06:55 -03:00
|
|
|
>>> round(a, 1) # round() first converts to binary floating point
|
2004-07-05 02:52:03 -03:00
|
|
|
1.3
|
|
|
|
>>> int(a)
|
|
|
|
1
|
|
|
|
>>> a * 5
|
|
|
|
Decimal("6.70")
|
|
|
|
>>> a * b
|
|
|
|
Decimal("2.5058")
|
|
|
|
>>> c % a
|
|
|
|
Decimal("0.77")
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The \method{quantize()} method rounds a number to a fixed exponent. This
|
|
|
|
method is useful for monetary applications that often round results to a fixed
|
|
|
|
number of places:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> Decimal('7.325').quantize(Decimal('.01'), rounding=ROUND_DOWN)
|
|
|
|
Decimal("7.32")
|
|
|
|
>>> Decimal('7.325').quantize(Decimal('1.'), rounding=ROUND_UP)
|
|
|
|
Decimal("8")
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
As shown above, the \function{getcontext()} function accesses the current
|
|
|
|
context and allows the settings to be changed. This approach meets the
|
|
|
|
needs of most applications.
|
|
|
|
|
|
|
|
For more advanced work, it may be useful to create alternate contexts using
|
|
|
|
the Context() constructor. To make an alternate active, use the
|
|
|
|
\function{setcontext()} function.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
In accordance with the standard, the \module{Decimal} module provides two
|
|
|
|
ready to use standard contexts, \constant{BasicContext} and
|
|
|
|
\constant{ExtendedContext}. The former is especially useful for debugging
|
|
|
|
because many of the traps are enabled:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> myothercontext = Context(prec=60, rounding=ROUND_HALF_DOWN)
|
|
|
|
>>> setcontext(myothercontext)
|
|
|
|
>>> Decimal(1) / Decimal(7)
|
|
|
|
Decimal("0.142857142857142857142857142857142857142857142857142857142857")
|
2004-07-11 09:40:19 -03:00
|
|
|
|
|
|
|
>>> ExtendedContext
|
|
|
|
Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
|
|
|
|
capitals=1, flags=[], traps=[])
|
2004-07-05 02:52:03 -03:00
|
|
|
>>> setcontext(ExtendedContext)
|
|
|
|
>>> Decimal(1) / Decimal(7)
|
|
|
|
Decimal("0.142857143")
|
|
|
|
>>> Decimal(42) / Decimal(0)
|
|
|
|
Decimal("Infinity")
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2004-07-05 02:52:03 -03:00
|
|
|
>>> setcontext(BasicContext)
|
|
|
|
>>> Decimal(42) / Decimal(0)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "<pyshell#143>", line 1, in -toplevel-
|
|
|
|
Decimal(42) / Decimal(0)
|
|
|
|
DivisionByZero: x / 0
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
|
|
|
|
Contexts also have signal flags for monitoring exceptional conditions
|
|
|
|
encountered during computations. The flags remain set until explicitly
|
|
|
|
cleared, so it is best to clear the flags before each set of monitored
|
|
|
|
computations by using the \method{clear_flags()} method.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> setcontext(ExtendedContext)
|
2004-07-11 09:40:19 -03:00
|
|
|
>>> getcontext().clear_flags()
|
2004-07-05 02:52:03 -03:00
|
|
|
>>> Decimal(355) / Decimal(113)
|
|
|
|
Decimal("3.14159292")
|
|
|
|
>>> getcontext()
|
|
|
|
Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999,
|
2004-07-10 11:14:37 -03:00
|
|
|
capitals=1, flags=[Inexact, Rounded], traps=[])
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The \var{flags} entry shows that the rational approximation to \constant{Pi}
|
|
|
|
was rounded (digits beyond the context precision were thrown away) and that
|
|
|
|
the result is inexact (some of the discarded digits were non-zero).
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-10 11:14:37 -03:00
|
|
|
Individual traps are set using the dictionary in the \member{traps}
|
2004-07-05 02:52:03 -03:00
|
|
|
field of a context:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> Decimal(1) / Decimal(0)
|
|
|
|
Decimal("Infinity")
|
2004-07-10 11:14:37 -03:00
|
|
|
>>> getcontext().traps[DivisionByZero] = 1
|
2004-07-05 02:52:03 -03:00
|
|
|
>>> Decimal(1) / Decimal(0)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "<pyshell#112>", line 1, in -toplevel-
|
|
|
|
Decimal(1) / Decimal(0)
|
|
|
|
DivisionByZero: x / 0
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Most programs adjust the current context only once, at the beginning of the
|
|
|
|
program. And, in many applications, data is converted to \class{Decimal} with
|
|
|
|
a single cast inside a loop. With context set and decimals created, the bulk
|
|
|
|
of the program manipulates the data no differently than with other Python
|
|
|
|
numeric types.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Decimal objects \label{decimal-decimal}}
|
|
|
|
|
|
|
|
\begin{classdesc}{Decimal}{\optional{value \optional{, context}}}
|
|
|
|
Constructs a new \class{Decimal} object based from \var{value}.
|
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
\var{value} can be an integer, string, tuple, or another \class{Decimal}
|
|
|
|
object. If no \var{value} is given, returns \code{Decimal("0")}. If
|
|
|
|
\var{value} is a string, it should conform to the decimal numeric string
|
|
|
|
syntax:
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
sign ::= '+' | '-'
|
|
|
|
digit ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
|
|
|
|
indicator ::= 'e' | 'E'
|
|
|
|
digits ::= digit [digit]...
|
|
|
|
decimal-part ::= digits '.' [digits] | ['.'] digits
|
|
|
|
exponent-part ::= indicator [sign] digits
|
|
|
|
infinity ::= 'Infinity' | 'Inf'
|
|
|
|
nan ::= 'NaN' [digits] | 'sNaN' [digits]
|
|
|
|
numeric-value ::= decimal-part [exponent-part] | infinity
|
|
|
|
numeric-string ::= [sign] numeric-value | [sign] nan
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
If \var{value} is a \class{tuple}, it should have three components,
|
|
|
|
a sign (\constant{0} for positive or \constant{1} for negative),
|
2004-07-11 09:40:19 -03:00
|
|
|
a \class{tuple} of digits, and an integer exponent. For example,
|
|
|
|
\samp{Decimal((0, (1, 4, 1, 4), -3))} returns \code{Decimal("1.414")}.
|
2004-07-05 15:41:42 -03:00
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The \var{context} precision does not affect how many digits are stored.
|
|
|
|
That is determined exclusively by the number of digits in \var{value}. For
|
|
|
|
example, \samp{Decimal("3.00000")} records all five zeroes even if the
|
|
|
|
context precision is only three.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The purpose of the \var{context} argument is determining what to do if
|
|
|
|
\var{value} is a malformed string. If the context traps
|
|
|
|
\constant{InvalidOperation}, an exception is raised; otherwise, the
|
|
|
|
constructor returns a new Decimal with the value of \constant{NaN}.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Once constructed, \class{Decimal} objects are immutable.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
Decimal floating point objects share many properties with the other builtin
|
|
|
|
numeric types such as \class{float} and \class{int}. All of the usual
|
|
|
|
math operations and special methods apply. Likewise, decimal objects can
|
|
|
|
be copied, pickled, printed, used as dictionary keys, used as set elements,
|
|
|
|
compared, sorted, and coerced to another type (such as \class{float}
|
|
|
|
or \class{long}).
|
|
|
|
|
|
|
|
In addition to the standard numeric properties, decimal floating point objects
|
2004-07-11 09:40:19 -03:00
|
|
|
also have a number of specialized methods:
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{methoddesc}{adjusted}{}
|
2004-07-08 06:22:33 -03:00
|
|
|
Return the adjusted exponent after shifting out the coefficient's rightmost
|
|
|
|
digits until only the lead digit remains: \code{Decimal("321e+5").adjusted()}
|
2004-07-11 09:40:19 -03:00
|
|
|
returns seven. Used for determining the position of the most significant
|
|
|
|
digit with respect to the decimal point.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{as_tuple}{}
|
|
|
|
Returns a tuple representation of the number:
|
|
|
|
\samp{(sign, digittuple, exponent)}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{compare}{other\optional{, context}}
|
|
|
|
Compares like \method{__cmp__()} but returns a decimal instance:
|
|
|
|
\begin{verbatim}
|
|
|
|
a or b is a NaN ==> Decimal("NaN")
|
|
|
|
a < b ==> Decimal("-1")
|
|
|
|
a == b ==> Decimal("0")
|
|
|
|
a > b ==> Decimal("1")
|
|
|
|
\end{verbatim}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{max}{other\optional{, context}}
|
2004-11-11 22:03:36 -04:00
|
|
|
Like \samp{max(self, other)} except that the context rounding rule
|
|
|
|
is applied before returning and that \constant{NaN} values are
|
|
|
|
either signalled or ignored (depending on the context and whether
|
|
|
|
they are signaling or quiet).
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{min}{other\optional{, context}}
|
2004-11-11 22:03:36 -04:00
|
|
|
Like \samp{min(self, other)} except that the context rounding rule
|
|
|
|
is applied before returning and that \constant{NaN} values are
|
|
|
|
either signalled or ignored (depending on the context and whether
|
|
|
|
they are signaling or quiet).
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{normalize}{\optional{context}}
|
2004-07-08 06:22:33 -03:00
|
|
|
Normalize the number by stripping the rightmost trailing zeroes and
|
|
|
|
converting any result equal to \constant{Decimal("0")} to
|
|
|
|
\constant{Decimal("0e0")}. Used for producing canonical values for members
|
|
|
|
of an equivalence class. For example, \code{Decimal("32.100")} and
|
|
|
|
\code{Decimal("0.321000e+2")} both normalize to the equivalent value
|
2004-08-15 20:51:38 -03:00
|
|
|
\code{Decimal("32.1")}.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{quantize}
|
2004-11-19 20:33:51 -04:00
|
|
|
{exp \optional{, rounding\optional{, context\optional{, watchexp}}}}
|
2004-07-05 02:52:03 -03:00
|
|
|
Quantize makes the exponent the same as \var{exp}. Searches for a
|
|
|
|
rounding method in \var{rounding}, then in \var{context}, and then
|
|
|
|
in the current context.
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
If \var{watchexp} is set (default), then an error is returned whenever
|
2004-07-05 02:52:03 -03:00
|
|
|
the resulting exponent is greater than \member{Emax} or less than
|
|
|
|
\member{Etiny}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{remainder_near}{other\optional{, context}}
|
2004-07-11 09:40:19 -03:00
|
|
|
Computes the modulo as either a positive or negative value depending
|
2004-07-05 02:52:03 -03:00
|
|
|
on which is closest to zero. For instance,
|
|
|
|
\samp{Decimal(10).remainder_near(6)} returns \code{Decimal("-2")}
|
|
|
|
which is closer to zero than \code{Decimal("4")}.
|
|
|
|
|
|
|
|
If both are equally close, the one chosen will have the same sign
|
|
|
|
as \var{self}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
\begin{methoddesc}{same_quantum}{other\optional{, context}}
|
2004-07-05 02:52:03 -03:00
|
|
|
Test whether self and other have the same exponent or whether both
|
|
|
|
are \constant{NaN}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{sqrt}{\optional{context}}
|
|
|
|
Return the square root to full precision.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{to_eng_string}{\optional{context}}
|
2004-07-08 06:22:33 -03:00
|
|
|
Convert to an engineering-type string.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Engineering notation has an exponent which is a multiple of 3, so there
|
|
|
|
are up to 3 digits left of the decimal place. For example, converts
|
|
|
|
\code{Decimal('123E+1')} to \code{Decimal("1.23E+3")}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{to_integral}{\optional{rounding\optional{, context}}}
|
2004-07-08 06:22:33 -03:00
|
|
|
Rounds to the nearest integer without signaling \constant{Inexact}
|
2004-07-05 02:52:03 -03:00
|
|
|
or \constant{Rounded}. If given, applies \var{rounding}; otherwise,
|
|
|
|
uses the rounding method in either the supplied \var{context} or the
|
|
|
|
current context.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
|
|
|
|
|
2004-07-05 02:52:03 -03:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Context objects \label{decimal-decimal}}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Contexts are environments for arithmetic operations. They govern precision,
|
|
|
|
set rules for rounding, determine which signals are treated as exceptions, and
|
|
|
|
limit the range for exponents.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Each thread has its own current context which is accessed or changed using
|
|
|
|
the \function{getcontext()} and \function{setcontext()} functions:
|
|
|
|
|
|
|
|
\begin{funcdesc}{getcontext}{}
|
|
|
|
Return the current context for the active thread.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{setcontext}{c}
|
|
|
|
Set the current context for the active thread to \var{c}.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
New contexts can formed using the \class{Context} constructor described below.
|
|
|
|
In addition, the module provides three pre-made contexts:
|
|
|
|
|
|
|
|
|
|
|
|
\begin{classdesc*}{BasicContext}
|
|
|
|
This is a standard context defined by the General Decimal Arithmetic
|
|
|
|
Specification. Precision is set to nine. Rounding is set to
|
|
|
|
\constant{ROUND_HALF_UP}. All flags are cleared. All traps are enabled
|
|
|
|
(treated as exceptions) except \constant{Inexact}, \constant{Rounded}, and
|
|
|
|
\constant{Subnormal}.
|
|
|
|
|
|
|
|
Because many of the traps are enabled, this context is useful for debugging.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{ExtendedContext}
|
|
|
|
This is a standard context defined by the General Decimal Arithmetic
|
|
|
|
Specification. Precision is set to nine. Rounding is set to
|
|
|
|
\constant{ROUND_HALF_EVEN}. All flags are cleared. No traps are enabled
|
|
|
|
(so that exceptions are not raised during computations).
|
2004-07-08 06:22:33 -03:00
|
|
|
|
|
|
|
Because the trapped are disabled, this context is useful for applications
|
|
|
|
that prefer to have result value of \constant{NaN} or \constant{Infinity}
|
|
|
|
instead of raising exceptions. This allows an application to complete a
|
2004-07-11 09:40:19 -03:00
|
|
|
run in the presence of conditions that would otherwise halt the program.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{DefaultContext}
|
2004-07-11 09:40:19 -03:00
|
|
|
This context is used by the \class{Context} constructor as a prototype for
|
2004-07-05 02:52:03 -03:00
|
|
|
new contexts. Changing a field (such a precision) has the effect of
|
|
|
|
changing the default for new contexts creating by the \class{Context}
|
|
|
|
constructor.
|
|
|
|
|
|
|
|
This context is most useful in multi-threaded environments. Changing one of
|
|
|
|
the fields before threads are started has the effect of setting system-wide
|
|
|
|
defaults. Changing the fields after threads have started is not recommended
|
|
|
|
as it would require thread synchronization to prevent race conditions.
|
|
|
|
|
|
|
|
In single threaded environments, it is preferable to not use this context
|
2004-07-11 09:40:19 -03:00
|
|
|
at all. Instead, simply create contexts explicitly as described below.
|
|
|
|
|
|
|
|
The default values are precision=28, rounding=ROUND_HALF_EVEN, and enabled
|
|
|
|
traps for Overflow, InvalidOperation, and DivisionByZero.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{classdesc*}
|
2004-07-08 06:22:33 -03:00
|
|
|
|
|
|
|
|
|
|
|
In addition to the three supplied contexts, new contexts can be created
|
|
|
|
with the \class{Context} constructor.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-10 11:14:37 -03:00
|
|
|
\begin{classdesc}{Context}{prec=None, rounding=None, traps=None,
|
2004-07-05 02:52:03 -03:00
|
|
|
flags=None, Emin=None, Emax=None, capitals=1}
|
|
|
|
Creates a new context. If a field is not specified or is \constant{None},
|
|
|
|
the default values are copied from the \constant{DefaultContext}. If the
|
|
|
|
\var{flags} field is not specified or is \constant{None}, all flags are
|
|
|
|
cleared.
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
The \var{prec} field is a positive integer that sets the precision for
|
2004-07-05 02:52:03 -03:00
|
|
|
arithmetic operations in the context.
|
|
|
|
|
2004-07-09 03:13:12 -03:00
|
|
|
The \var{rounding} option is one of:
|
|
|
|
\constant{ROUND_CEILING} (towards \constant{Infinity}),
|
|
|
|
\constant{ROUND_DOWN} (towards zero),
|
|
|
|
\constant{ROUND_FLOOR} (towards \constant{-Infinity}),
|
|
|
|
\constant{ROUND_HALF_DOWN} (towards zero),
|
|
|
|
\constant{ROUND_HALF_EVEN},
|
|
|
|
\constant{ROUND_HALF_UP} (away from zero), or
|
|
|
|
\constant{ROUND_UP} (away from zero).
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The \var{traps} and \var{flags} fields list any signals to be set.
|
|
|
|
Generally, new contexts should only set traps and leave the flags clear.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
The \var{Emin} and \var{Emax} fields are integers specifying the outer
|
|
|
|
limits allowable for exponents.
|
|
|
|
|
|
|
|
The \var{capitals} field is either \constant{0} or \constant{1} (the
|
|
|
|
default). If set to \constant{1}, exponents are printed with a capital
|
2004-07-11 09:40:19 -03:00
|
|
|
\constant{E}; otherwise, a lowercase \constant{e} is used:
|
|
|
|
\constant{Decimal('6.02e+23')}.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{classdesc}
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The \class{Context} class defines several general purpose methods as well as a
|
|
|
|
large number of methods for doing arithmetic directly in a given context.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{methoddesc}{clear_flags}{}
|
|
|
|
Sets all of the flags to \constant{0}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{copy}{}
|
|
|
|
Returns a duplicate of the context.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{create_decimal}{num}
|
2004-07-11 09:40:19 -03:00
|
|
|
Creates a new Decimal instance from \var{num} but using \var{self} as
|
|
|
|
context. Unlike the \class{Decimal} constructor, the context precision,
|
2004-07-05 02:52:03 -03:00
|
|
|
rounding method, flags, and traps are applied to the conversion.
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
This is useful because constants are often given to a greater precision than
|
2004-07-12 10:22:14 -03:00
|
|
|
is needed by the application. Another benefit is that rounding immediately
|
|
|
|
eliminates unintended effects from digits beyond the current precision.
|
|
|
|
In the following example, using unrounded inputs means that adding zero
|
|
|
|
to a sum can change the result:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> getcontext().prec = 3
|
|
|
|
>>> Decimal("3.4445") + Decimal("1.0023")
|
|
|
|
Decimal("4.45")
|
|
|
|
>>> Decimal("3.4445") + Decimal(0) + Decimal("1.0023")
|
|
|
|
Decimal("4.44")
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{Etiny}{}
|
|
|
|
Returns a value equal to \samp{Emin - prec + 1} which is the minimum
|
|
|
|
exponent value for subnormal results. When underflow occurs, the
|
2004-07-11 09:40:19 -03:00
|
|
|
exponent is set to \constant{Etiny}.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
\begin{methoddesc}{Etop}{}
|
|
|
|
Returns a value equal to \samp{Emax - prec + 1}.
|
|
|
|
\end{methoddesc}
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
The usual approach to working with decimals is to create \class{Decimal}
|
|
|
|
instances and then apply arithmetic operations which take place within the
|
|
|
|
current context for the active thread. An alternate approach is to use
|
2004-07-11 09:40:19 -03:00
|
|
|
context methods for calculating within a specific context. The methods are
|
2004-07-08 06:22:33 -03:00
|
|
|
similar to those for the \class{Decimal} class and are only briefly recounted
|
|
|
|
here.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{methoddesc}{abs}{x}
|
|
|
|
Returns the absolute value of \var{x}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{add}{x, y}
|
|
|
|
Return the sum of \var{x} and \var{y}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{compare}{x, y}
|
|
|
|
Compares values numerically.
|
|
|
|
|
|
|
|
Like \method{__cmp__()} but returns a decimal instance:
|
|
|
|
\begin{verbatim}
|
|
|
|
a or b is a NaN ==> Decimal("NaN")
|
|
|
|
a < b ==> Decimal("-1")
|
|
|
|
a == b ==> Decimal("0")
|
|
|
|
a > b ==> Decimal("1")
|
|
|
|
\end{verbatim}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{divide}{x, y}
|
|
|
|
Return \var{x} divided by \var{y}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2004-07-08 06:22:33 -03:00
|
|
|
\begin{methoddesc}{divmod}{x, y}
|
2004-07-05 02:52:03 -03:00
|
|
|
Divides two numbers and returns the integer part of the result.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{max}{x, y}
|
2004-07-11 09:40:19 -03:00
|
|
|
Compare two values numerically and return the maximum.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
If they are numerically equal then the left-hand operand is chosen as the
|
|
|
|
result.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{min}{x, y}
|
2004-07-11 09:40:19 -03:00
|
|
|
Compare two values numerically and return the minimum.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
If they are numerically equal then the left-hand operand is chosen as the
|
|
|
|
result.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{minus}{x}
|
2004-07-08 06:22:33 -03:00
|
|
|
Minus corresponds to the unary prefix minus operator in Python.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{multiply}{x, y}
|
|
|
|
Return the product of \var{x} and \var{y}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{normalize}{x}
|
|
|
|
Normalize reduces an operand to its simplest form.
|
|
|
|
|
2004-07-12 10:22:14 -03:00
|
|
|
Essentially a \method{plus} operation with all trailing zeros removed from
|
|
|
|
the result.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{plus}{x}
|
2004-07-12 10:22:14 -03:00
|
|
|
Plus corresponds to the unary prefix plus operator in Python. This
|
|
|
|
operation applies the context precision and rounding, so it is
|
|
|
|
\emph{not} an identity operation.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{power}{x, y\optional{, modulo}}
|
|
|
|
Return \samp{x ** y} to the \var{modulo} if given.
|
|
|
|
|
|
|
|
The right-hand operand must be a whole number whose integer part (after any
|
|
|
|
exponent has been applied) has no more than 9 digits and whose fractional
|
|
|
|
part (if any) is all zeros before any rounding. The operand may be positive,
|
|
|
|
negative, or zero; if negative, the absolute value of the power is used, and
|
|
|
|
the left-hand operand is inverted (divided into 1) before use.
|
|
|
|
|
|
|
|
If the increased precision needed for the intermediate calculations exceeds
|
2004-07-08 06:22:33 -03:00
|
|
|
the capabilities of the implementation then an \constant{InvalidOperation}
|
|
|
|
condition is signaled.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
If, when raising to a negative power, an underflow occurs during the
|
|
|
|
division into 1, the operation is not halted at that point but continues.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{quantize}{x, y}
|
2004-07-11 09:40:19 -03:00
|
|
|
Returns a value equal to \var{x} after rounding and having the exponent of
|
|
|
|
\var{y}.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Unlike other operations, if the length of the coefficient after the quantize
|
2004-07-11 09:40:19 -03:00
|
|
|
operation would be greater than precision, then an
|
2004-07-05 02:52:03 -03:00
|
|
|
\constant{InvalidOperation} is signaled. This guarantees that, unless there
|
2004-07-11 09:40:19 -03:00
|
|
|
is an error condition, the quantized exponent is always equal to that of the
|
|
|
|
right-hand operand.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Also unlike other operations, quantize never signals Underflow, even
|
|
|
|
if the result is subnormal and inexact.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{remainder}{x, y}
|
|
|
|
Returns the remainder from integer division.
|
|
|
|
|
|
|
|
The sign of the result, if non-zero, is the same as that of the original
|
|
|
|
dividend.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{remainder_near}{x, y}
|
|
|
|
Computed the modulo as either a positive or negative value depending
|
|
|
|
on which is closest to zero. For instance,
|
|
|
|
\samp{Decimal(10).remainder_near(6)} returns \code{Decimal("-2")}
|
|
|
|
which is closer to zero than \code{Decimal("4")}.
|
|
|
|
|
|
|
|
If both are equally close, the one chosen will have the same sign
|
|
|
|
as \var{self}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{same_quantum}{x, y}
|
|
|
|
Test whether \var{x} and \var{y} have the same exponent or whether both are
|
|
|
|
\constant{NaN}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{sqrt}{}
|
|
|
|
Return the square root to full precision.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{substract}{x, y}
|
2004-07-08 06:22:33 -03:00
|
|
|
Return the difference between \var{x} and \var{y}.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{to_eng_string}{}
|
|
|
|
Convert to engineering-type string.
|
|
|
|
|
|
|
|
Engineering notation has an exponent which is a multiple of 3, so there
|
|
|
|
are up to 3 digits left of the decimal place. For example, converts
|
|
|
|
\code{Decimal('123E+1')} to \code{Decimal("1.23E+3")}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{to_integral}{x}
|
2004-07-08 06:22:33 -03:00
|
|
|
Rounds to the nearest integer without signaling \constant{Inexact}
|
2004-07-05 02:52:03 -03:00
|
|
|
or \constant{Rounded}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}{to_sci_string}{}
|
2004-07-08 06:22:33 -03:00
|
|
|
Converts a number to a string using scientific notation.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Signals \label{decimal-signals}}
|
|
|
|
|
|
|
|
Signals represent conditions that arise during computation.
|
|
|
|
Each corresponds to one context flag and one context trap enabler.
|
|
|
|
|
|
|
|
The context flag is incremented whenever the condition is encountered.
|
|
|
|
After the computation, flags may be checked for informational
|
2004-07-08 06:22:33 -03:00
|
|
|
purposes (for instance, to determine whether a computation was exact).
|
2004-07-05 02:52:03 -03:00
|
|
|
After checking the flags, be sure to clear all flags before starting
|
|
|
|
the next computation.
|
|
|
|
|
|
|
|
If the context's trap enabler is set for the signal, then the condition
|
|
|
|
causes a Python exception to be raised. For example, if the
|
2004-07-11 09:40:19 -03:00
|
|
|
\class{DivisionByZero} trap is set, then a \exception{DivisionByZero}
|
2004-07-05 02:52:03 -03:00
|
|
|
exception is raised upon encountering the condition.
|
|
|
|
|
|
|
|
|
|
|
|
\begin{classdesc*}{Clamped}
|
|
|
|
Altered an exponent to fit representation constraints.
|
|
|
|
|
|
|
|
Typically, clamping occurs when an exponent falls outside the context's
|
|
|
|
\member{Emin} and \member{Emax} limits. If possible, the exponent is
|
|
|
|
reduced to fit by adding zeroes to the coefficient.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{DecimalException}
|
2005-02-21 11:46:52 -04:00
|
|
|
Base class for other signals and a subclass of
|
2004-07-11 09:40:19 -03:00
|
|
|
\exception{ArithmeticError}.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{DivisionByZero}
|
|
|
|
Signals the division of a non-infinite number by zero.
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Can occur with division, modulo division, or when raising a number to a
|
|
|
|
negative power. If this signal is not trapped, returns
|
|
|
|
\constant{Infinity} or \constant{-Infinity} with the sign determined by
|
2004-07-05 02:52:03 -03:00
|
|
|
the inputs to the calculation.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{Inexact}
|
|
|
|
Indicates that rounding occurred and the result is not exact.
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Signals when non-zero digits were discarded during rounding. The rounded
|
|
|
|
result is returned. The signal flag or trap is used to detect when
|
|
|
|
results are inexact.
|
2004-07-05 02:52:03 -03:00
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{InvalidOperation}
|
|
|
|
An invalid operation was performed.
|
|
|
|
|
|
|
|
Indicates that an operation was requested that does not make sense.
|
|
|
|
If not trapped, returns \constant{NaN}. Possible causes include:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
Infinity - Infinity
|
|
|
|
0 * Infinity
|
|
|
|
Infinity / Infinity
|
|
|
|
x % 0
|
|
|
|
Infinity % x
|
|
|
|
x._rescale( non-integer )
|
|
|
|
sqrt(-x) and x > 0
|
|
|
|
0 ** 0
|
|
|
|
x ** (non-integer)
|
|
|
|
x ** Infinity
|
|
|
|
\end{verbatim}
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{Overflow}
|
|
|
|
Numerical overflow.
|
|
|
|
|
|
|
|
Indicates the exponent is larger than \member{Emax} after rounding has
|
|
|
|
occurred. If not trapped, the result depends on the rounding mode, either
|
|
|
|
pulling inward to the largest representable finite number or rounding
|
|
|
|
outward to \constant{Infinity}. In either case, \class{Inexact} and
|
|
|
|
\class{Rounded} are also signaled.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{Rounded}
|
2004-07-08 06:22:33 -03:00
|
|
|
Rounding occurred though possibly no information was lost.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Signaled whenever rounding discards digits; even if those digits are
|
|
|
|
zero (such as rounding \constant{5.00} to \constant{5.0}). If not
|
|
|
|
trapped, returns the result unchanged. This signal is used to detect
|
|
|
|
loss of significant digits.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{Subnormal}
|
|
|
|
Exponent was lower than \member{Emin} prior to rounding.
|
|
|
|
|
|
|
|
Occurs when an operation result is subnormal (the exponent is too small).
|
|
|
|
If not trapped, returns the result unchanged.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
\begin{classdesc*}{Underflow}
|
|
|
|
Numerical underflow with result rounded to zero.
|
|
|
|
|
|
|
|
Occurs when a subnormal result is pushed to zero by rounding.
|
|
|
|
\class{Inexact} and \class{Subnormal} are also signaled.
|
|
|
|
\end{classdesc*}
|
|
|
|
|
|
|
|
The following table summarizes the hierarchy of signals:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
exceptions.ArithmeticError(exceptions.StandardError)
|
|
|
|
DecimalException
|
|
|
|
Clamped
|
|
|
|
DivisionByZero(DecimalException, exceptions.ZeroDivisionError)
|
|
|
|
Inexact
|
|
|
|
Overflow(Inexact, Rounded)
|
|
|
|
Underflow(Inexact, Rounded, Subnormal)
|
|
|
|
InvalidOperation
|
|
|
|
Rounded
|
|
|
|
Subnormal
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
|
2004-08-15 20:47:48 -03:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Floating Point Notes \label{decimal-notes}}
|
|
|
|
|
|
|
|
The use of decimal floating point eliminates decimal representation error
|
|
|
|
(making it possible to represent \constant{0.1} exactly); however, some
|
|
|
|
operations can still incur round-off error when non-zero digits exceed the
|
|
|
|
fixed precision.
|
|
|
|
|
|
|
|
The effects of round-off error can be amplified by the addition or subtraction
|
|
|
|
of nearly offsetting quantities resulting in loss of significance. Knuth
|
|
|
|
provides two instructive examples where rounded floating point arithmetic with
|
2004-08-26 00:11:56 -03:00
|
|
|
insufficient precision causes the breakdown of the associative and
|
2004-08-15 20:47:48 -03:00
|
|
|
distributive properties of addition:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
# Examples from Seminumerical Algorithms, Section 4.2.2.
|
2005-02-21 11:46:52 -04:00
|
|
|
>>> from decimal import Decimal, getcontext
|
2004-08-15 20:47:48 -03:00
|
|
|
>>> getcontext().prec = 8
|
|
|
|
|
|
|
|
>>> u, v, w = Decimal(11111113), Decimal(-11111111), Decimal('7.51111111')
|
|
|
|
>>> (u + v) + w
|
|
|
|
Decimal("9.5111111")
|
|
|
|
>>> u + (v + w)
|
|
|
|
Decimal("10")
|
|
|
|
|
|
|
|
>>> u, v, w = Decimal(20000), Decimal(-6), Decimal('6.0000003')
|
|
|
|
>>> (u*v) + (u*w)
|
|
|
|
Decimal("0.01")
|
|
|
|
>>> u * (v+w)
|
|
|
|
Decimal("0.0060000")
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The \module{decimal} module makes it possible to restore the identities
|
|
|
|
by expanding the precision sufficiently to avoid loss of significance:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> getcontext().prec = 20
|
|
|
|
>>> u, v, w = Decimal(11111113), Decimal(-11111111), Decimal('7.51111111')
|
|
|
|
>>> (u + v) + w
|
|
|
|
Decimal("9.51111111")
|
|
|
|
>>> u + (v + w)
|
|
|
|
Decimal("9.51111111")
|
|
|
|
>>>
|
|
|
|
>>> u, v, w = Decimal(20000), Decimal(-6), Decimal('6.0000003')
|
|
|
|
>>> (u*v) + (u*w)
|
|
|
|
Decimal("0.0060000")
|
|
|
|
>>> u * (v+w)
|
|
|
|
Decimal("0.0060000")
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
|
|
|
|
The number system for the \module{decimal} module provides special
|
|
|
|
values including \constant{NaN}, \constant{sNaN}, \constant{-Infinity},
|
|
|
|
\constant{Infinity}, and two zeroes, \constant{+0} and \constant{-0}.
|
|
|
|
|
2004-08-16 13:12:23 -03:00
|
|
|
Infinities can be constructed directly with: \code{Decimal('Infinity')}. Also,
|
2004-08-15 20:47:48 -03:00
|
|
|
they can arise from dividing by zero when the \exception{DivisionByZero}
|
|
|
|
signal is not trapped. Likewise, when the \exception{Overflow} signal is not
|
|
|
|
trapped, infinity can result from rounding beyond the limits of the largest
|
|
|
|
representable number.
|
|
|
|
|
|
|
|
The infinities are signed (affine) and can be used in arithmetic operations
|
|
|
|
where they get treated as very large, indeterminate numbers. For instance,
|
|
|
|
adding a constant to infinity gives another infinite result.
|
|
|
|
|
2004-08-26 00:11:56 -03:00
|
|
|
Some operations are indeterminate and return \constant{NaN}, or if the
|
2004-08-15 20:47:48 -03:00
|
|
|
\exception{InvalidOperation} signal is trapped, raise an exception. For
|
|
|
|
example, \code{0/0} returns \constant{NaN} which means ``not a number''. This
|
|
|
|
variety of \constant{NaN} is quiet and, once created, will flow through other
|
|
|
|
computations always resulting in another \constant{NaN}. This behavior can be
|
|
|
|
useful for a series of computations that occasionally have missing inputs ---
|
|
|
|
it allows the calculation to proceed while flagging specific results as
|
|
|
|
invalid.
|
|
|
|
|
|
|
|
A variant is \constant{sNaN} which signals rather than remaining quiet
|
|
|
|
after every operation. This is a useful return value when an invalid
|
|
|
|
result needs to interrupt a calculation for special handling.
|
|
|
|
|
|
|
|
The signed zeros can result from calculations that underflow.
|
|
|
|
They keep the sign that would have resulted if the calculation had
|
|
|
|
been carried out to greater precision. Since their magnitude is
|
2004-08-26 00:11:56 -03:00
|
|
|
zero, both positive and negative zeros are treated as equal and their
|
2004-08-15 20:47:48 -03:00
|
|
|
sign is informational.
|
|
|
|
|
2004-08-26 00:11:56 -03:00
|
|
|
In addition to the two signed zeros which are distinct yet equal,
|
|
|
|
there are various representations of zero with differing precisions
|
2004-08-15 20:47:48 -03:00
|
|
|
yet equivalent in value. This takes a bit of getting used to. For
|
|
|
|
an eye accustomed to normalized floating point representations, it
|
|
|
|
is not immediately obvious that the following calculation returns
|
|
|
|
a value equal to zero:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> 1 / Decimal('Infinity')
|
|
|
|
Decimal("0E-1000000026")
|
|
|
|
\end{verbatim}
|
|
|
|
|
2004-07-05 02:52:03 -03:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Working with threads \label{decimal-threads}}
|
|
|
|
|
|
|
|
The \function{getcontext()} function accesses a different \class{Context}
|
2004-07-08 06:22:33 -03:00
|
|
|
object for each thread. Having separate thread contexts means that threads
|
|
|
|
may make changes (such as \code{getcontext.prec=10}) without interfering with
|
2004-07-11 09:40:19 -03:00
|
|
|
other threads.
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
Likewise, the \function{setcontext()} function automatically assigns its target
|
|
|
|
to the current thread.
|
|
|
|
|
|
|
|
If \function{setcontext()} has not been called before \function{getcontext()},
|
|
|
|
then \function{getcontext()} will automatically create a new context for use
|
|
|
|
in the current thread.
|
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
The new context is copied from a prototype context called
|
|
|
|
\var{DefaultContext}. To control the defaults so that each thread will use the
|
|
|
|
same values throughout the application, directly modify the
|
|
|
|
\var{DefaultContext} object. This should be done \emph{before} any threads are
|
|
|
|
started so that there won't be a race condition between threads calling
|
|
|
|
\function{getcontext()}. For example:
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
\begin{verbatim}
|
2004-07-08 06:22:33 -03:00
|
|
|
# Set applicationwide defaults for all threads about to be launched
|
2004-07-14 18:06:55 -03:00
|
|
|
DefaultContext.prec = 12
|
|
|
|
DefaultContext.rounding = ROUND_DOWN
|
|
|
|
DefaultContext.traps = ExtendedContext.traps.copy()
|
|
|
|
DefaultContext.traps[InvalidOperation] = 1
|
2004-07-05 02:52:03 -03:00
|
|
|
setcontext(DefaultContext)
|
|
|
|
|
2004-07-14 18:06:55 -03:00
|
|
|
# Afterwards, the threads can be started
|
2004-07-05 02:52:03 -03:00
|
|
|
t1.start()
|
|
|
|
t2.start()
|
|
|
|
t3.start()
|
|
|
|
. . .
|
|
|
|
\end{verbatim}
|
2004-08-15 20:47:48 -03:00
|
|
|
|
2004-07-05 02:52:03 -03:00
|
|
|
|
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
\subsection{Recipes \label{decimal-recipes}}
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-11 09:40:19 -03:00
|
|
|
Here are a few recipes that serve as utility functions and that demonstrate
|
|
|
|
ways to work with the \class{Decimal} class:
|
2004-07-05 02:52:03 -03:00
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
\begin{verbatim}
|
2004-07-11 09:40:19 -03:00
|
|
|
def moneyfmt(value, places=2, curr='', sep=',', dp='.',
|
|
|
|
pos='', neg='-', trailneg=''):
|
2004-07-05 15:41:42 -03:00
|
|
|
"""Convert Decimal to a money formatted string.
|
|
|
|
|
|
|
|
places: required number of places after the decimal point
|
|
|
|
curr: optional currency symbol before the sign (may be blank)
|
2004-11-25 00:47:09 -04:00
|
|
|
sep: optional grouping separator (comma, period, space, or blank)
|
2004-07-05 15:41:42 -03:00
|
|
|
dp: decimal point indicator (comma or period)
|
2004-07-11 09:40:19 -03:00
|
|
|
only specify as blank when places is zero
|
2004-11-25 00:47:09 -04:00
|
|
|
pos: optional sign for positive numbers: '+', space or blank
|
|
|
|
neg: optional sign for negative numbers: '-', '(', space or blank
|
|
|
|
trailneg:optional trailing minus indicator: '-', ')', space or blank
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
>>> d = Decimal('-1234567.8901')
|
2004-07-11 09:40:19 -03:00
|
|
|
>>> moneyfmt(d, curr='$')
|
2004-07-05 15:41:42 -03:00
|
|
|
'-$1,234,567.89'
|
2004-07-11 09:40:19 -03:00
|
|
|
>>> moneyfmt(d, places=0, sep='.', dp='', neg='', trailneg='-')
|
|
|
|
'1.234.568-'
|
|
|
|
>>> moneyfmt(d, curr='$', neg='(', trailneg=')')
|
2004-07-05 15:41:42 -03:00
|
|
|
'($1,234,567.89)'
|
2004-11-25 00:47:09 -04:00
|
|
|
>>> moneyfmt(Decimal(123456789), sep=' ')
|
|
|
|
'123 456 789.00'
|
|
|
|
>>> moneyfmt(Decimal('-0.02'), neg='<', trailneg='>')
|
|
|
|
'<.02>'
|
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
"""
|
|
|
|
q = Decimal((0, (1,), -places)) # 2 places --> '0.01'
|
|
|
|
sign, digits, exp = value.quantize(q).as_tuple()
|
2004-11-25 00:47:09 -04:00
|
|
|
assert exp == -places
|
2004-07-05 15:41:42 -03:00
|
|
|
result = []
|
|
|
|
digits = map(str, digits)
|
2004-07-11 09:40:19 -03:00
|
|
|
build, next = result.append, digits.pop
|
|
|
|
if sign:
|
|
|
|
build(trailneg)
|
2004-07-05 15:41:42 -03:00
|
|
|
for i in range(places):
|
2004-11-25 00:47:09 -04:00
|
|
|
if digits:
|
|
|
|
build(next())
|
|
|
|
else:
|
|
|
|
build('0')
|
2004-07-05 15:41:42 -03:00
|
|
|
build(dp)
|
2004-07-11 09:40:19 -03:00
|
|
|
i = 0
|
|
|
|
while digits:
|
|
|
|
build(next())
|
|
|
|
i += 1
|
2004-11-24 01:53:26 -04:00
|
|
|
if i == 3 and digits:
|
2004-07-11 09:40:19 -03:00
|
|
|
i = 0
|
|
|
|
build(sep)
|
2004-07-05 15:41:42 -03:00
|
|
|
build(curr)
|
|
|
|
if sign:
|
|
|
|
build(neg)
|
|
|
|
else:
|
|
|
|
build(pos)
|
|
|
|
result.reverse()
|
|
|
|
return ''.join(result)
|
|
|
|
|
|
|
|
def pi():
|
2004-07-05 17:17:13 -03:00
|
|
|
"""Compute Pi to the current precision.
|
|
|
|
|
|
|
|
>>> print pi()
|
2004-07-05 22:55:14 -03:00
|
|
|
3.141592653589793238462643383
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2004-07-05 17:17:13 -03:00
|
|
|
"""
|
2004-07-05 22:55:14 -03:00
|
|
|
getcontext().prec += 2 # extra digits for intermediate steps
|
2004-07-05 18:13:28 -03:00
|
|
|
three = Decimal(3) # substitute "three=3.0" for regular floats
|
2004-07-11 09:40:19 -03:00
|
|
|
lasts, t, s, n, na, d, da = 0, three, 3, 1, 0, 0, 24
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
2004-07-05 15:41:42 -03:00
|
|
|
n, na = n+na, na+8
|
|
|
|
d, da = d+da, da+32
|
|
|
|
t = (t * n) / d
|
2004-07-11 09:40:19 -03:00
|
|
|
s += t
|
2004-07-05 22:55:14 -03:00
|
|
|
getcontext().prec -= 2
|
2004-07-11 09:40:19 -03:00
|
|
|
return +s # unary plus applies the new precision
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
def exp(x):
|
2004-07-05 18:13:28 -03:00
|
|
|
"""Return e raised to the power of x. Result type matches input type.
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
>>> print exp(Decimal(1))
|
2004-07-05 22:55:14 -03:00
|
|
|
2.718281828459045235360287471
|
2004-07-05 15:41:42 -03:00
|
|
|
>>> print exp(Decimal(2))
|
2004-07-05 22:55:14 -03:00
|
|
|
7.389056098930650227230427461
|
2004-07-05 18:13:28 -03:00
|
|
|
>>> print exp(2.0)
|
|
|
|
7.38905609893
|
|
|
|
>>> print exp(2+0j)
|
|
|
|
(7.38905609893+0j)
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
"""
|
2004-07-11 09:40:19 -03:00
|
|
|
getcontext().prec += 2
|
|
|
|
i, lasts, s, fact, num = 0, 0, 1, 1, 1
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
2004-07-05 15:41:42 -03:00
|
|
|
i += 1
|
|
|
|
fact *= i
|
|
|
|
num *= x
|
2004-07-11 09:40:19 -03:00
|
|
|
s += num / fact
|
2004-07-05 22:55:14 -03:00
|
|
|
getcontext().prec -= 2
|
2004-07-11 09:40:19 -03:00
|
|
|
return +s
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
def cos(x):
|
|
|
|
"""Return the cosine of x as measured in radians.
|
|
|
|
|
|
|
|
>>> print cos(Decimal('0.5'))
|
2004-07-05 22:55:14 -03:00
|
|
|
0.8775825618903727161162815826
|
2004-07-05 18:13:28 -03:00
|
|
|
>>> print cos(0.5)
|
|
|
|
0.87758256189
|
|
|
|
>>> print cos(0.5+0j)
|
|
|
|
(0.87758256189+0j)
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
"""
|
2004-07-11 09:40:19 -03:00
|
|
|
getcontext().prec += 2
|
|
|
|
i, lasts, s, fact, num, sign = 0, 0, 1, 1, 1, 1
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
2004-07-05 15:41:42 -03:00
|
|
|
i += 2
|
|
|
|
fact *= i * (i-1)
|
|
|
|
num *= x * x
|
|
|
|
sign *= -1
|
2004-07-11 09:40:19 -03:00
|
|
|
s += num / fact * sign
|
2004-07-05 22:55:14 -03:00
|
|
|
getcontext().prec -= 2
|
2004-07-11 09:40:19 -03:00
|
|
|
return +s
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
def sin(x):
|
2004-11-25 01:35:32 -04:00
|
|
|
"""Return the sine of x as measured in radians.
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
>>> print sin(Decimal('0.5'))
|
2004-07-05 22:55:14 -03:00
|
|
|
0.4794255386042030002732879352
|
2004-07-05 18:13:28 -03:00
|
|
|
>>> print sin(0.5)
|
|
|
|
0.479425538604
|
|
|
|
>>> print sin(0.5+0j)
|
|
|
|
(0.479425538604+0j)
|
2004-07-11 09:40:19 -03:00
|
|
|
|
2004-07-05 15:41:42 -03:00
|
|
|
"""
|
2004-07-11 09:40:19 -03:00
|
|
|
getcontext().prec += 2
|
|
|
|
i, lasts, s, fact, num, sign = 1, 0, x, 1, x, 1
|
|
|
|
while s != lasts:
|
|
|
|
lasts = s
|
2004-07-05 15:41:42 -03:00
|
|
|
i += 2
|
|
|
|
fact *= i * (i-1)
|
|
|
|
num *= x * x
|
|
|
|
sign *= -1
|
2004-07-11 09:40:19 -03:00
|
|
|
s += num / fact * sign
|
2004-07-05 22:55:14 -03:00
|
|
|
getcontext().prec -= 2
|
2004-07-11 09:40:19 -03:00
|
|
|
return +s
|
2004-07-05 15:41:42 -03:00
|
|
|
|
|
|
|
\end{verbatim}
|