diff options
author | Fred Drake <fdrake@acm.org> | 2000-04-03 20:13:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-04-03 20:13:55 (GMT) |
commit | 38e5d27caee56b6958e0034e342abb48e6100390 (patch) | |
tree | 6a0c853da853123dd2e628e8ec187517250c2530 /Doc/lib/libmath.tex | |
parent | 659ebfa79e891fc5e2480cd66c157970df57c451 (diff) | |
download | cpython-38e5d27caee56b6958e0034e342abb48e6100390.zip cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.gz cpython-38e5d27caee56b6958e0034e342abb48e6100390.tar.bz2 |
Merged changes from the 1.5.2p2 release.
(Very rough.)
Diffstat (limited to 'Doc/lib/libmath.tex')
-rw-r--r-- | Doc/lib/libmath.tex | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex index 0a45fb3..af1ac10 100644 --- a/Doc/lib/libmath.tex +++ b/Doc/lib/libmath.tex @@ -5,7 +5,19 @@ \modulesynopsis{Mathematical functions (\function{sin()} etc.).} This module is always available. It provides access to the -mathematical functions defined by the C standard. They are: +mathematical functions defined by the C standard. + +These functions cannot be used with complex numbers; use the functions +of the same name from the \refmodule{cmath} module if you require +support for complex numbers. The distinction between functions which +support complex numbers and those which don't is made since most users +do not want to learn quite as much mathematics as required to +understand complex numbers. Receiving an exception instead of a +complex result allows earlier detection of the unexpected complex +number used as a parameter, so that the programmer can determine how +and why it was generated in the first place. + +The following functions provided by this module: \begin{funcdesc}{acos}{x} Return the arc cosine of \var{x}. |