[mpmath] r1232 committed - fix broken links in documentation (issue 206, patch submitted by gdrum...

2 views
Skip to first unread message

mpm...@googlecode.com

unread,
Mar 22, 2011, 8:01:39 PM3/22/11
to mpmath-...@googlegroups.com
Revision: 1232
Author: fredrik.johansson
Date: Tue Mar 22 17:00:25 2011
Log: fix broken links in documentation (issue 206, patch submitted by
gdrummo...@gmail.com)
http://code.google.com/p/mpmath/source/detail?r=1232

Modified:
/trunk/doc/source/references.txt
/trunk/doc/source/setup.txt
/trunk/doc/source/technical.txt
/trunk/mpmath/calculus/optimization.py
/trunk/mpmath/function_docs.py

=======================================
--- /trunk/doc/source/references.txt Wed Jul 28 13:09:06 2010
+++ /trunk/doc/source/references.txt Tue Mar 22 17:00:25 2011
@@ -5,7 +5,7 @@
or cited for examples or mathematical definitions used in this
documentation.
References not listed here can be found in the source code.

-.. [AbramowitzStegun] M Abramowitz & I Stegun. *Handbook of Mathematical
Functions, 9th Ed.*, Tenth Printing, December 1972, with corrections
(electronic copy: http://www.math.ucla.edu/~cbm/aands/)
+.. [AbramowitzStegun] M Abramowitz & I Stegun. *Handbook of Mathematical
Functions, 9th Ed.*, Tenth Printing, December 1972, with corrections
(electronic copy: http://people.math.sfu.ca/~cbm/aands/)

.. [Bailey] D H Bailey. "Tanh-Sinh High-Precision Quadrature",
http://crd.lbl.gov/~dhbailey/dhbpapers/dhb-tanh-sinh.pdf

@@ -16,7 +16,7 @@

.. [BorweinBorwein] J Borwein & P B Borwein. *Pi and the AGM: A Study in
Analytic Number Theory and Computational Complexity*, Wiley 1987

-.. [BorweinZeta] P Borwein. "An Efficient Algorithm for the Riemann Zeta
Function", http://www.cecm.sfu.ca/personal/pborwein/PAPERS/P117.ps
+.. [BorweinZeta] P Borwein. "An Efficient Algorithm for the Riemann Zeta
Function", http://www.cecm.sfu.ca/personal/pborwein/PAPERS/P155.pdf

.. [CabralRosetti] L G Cabral-Rosetti & M A Sanchis-Lozano. "Appell
Functions and the Scalar One-Loop Three-point Integrals in Feynman
Diagrams". http://arxiv.org/abs/hep-ph/0206081

@@ -45,6 +45,6 @@
.. [WhittakerWatson] E T Whittaker & G N Watson. *A Course of Modern
Analysis*. 4th Ed. 1946
Cambridge University Press

-.. [Wikipedia] *Wikipedia, the free encyclopedia*. http://en.wikipedia.org
+.. [Wikipedia] *Wikipedia, the free encyclopedia*.
http://en.wikipedia.org/wiki/Main_Page

.. [WolframFunctions] Wolfram Research, Inc. *The Wolfram Functions Site*.
http://functions.wolfram.com/
=======================================
--- /trunk/doc/source/setup.txt Wed Jul 28 13:09:06 2010
+++ /trunk/doc/source/setup.txt Tue Mar 22 17:00:25 2011
@@ -38,12 +38,12 @@

``sudo apt-get install python-mpmath``

-See `debian <http://packages.debian.org/python-mpmath>`_ and `ubuntu
<https://launchpad.net/ubuntu/+source/mpmath>`_ package information; please
verify that you are getting the latest version.
+See `debian <http://packages.debian.org/stable/python/python-mpmath>`_ and
`ubuntu <https://launchpad.net/ubuntu/+source/mpmath>`_ package
information; please verify that you are getting the latest version.

OpenSUSE
........

-Mpmath is provided in the "Science" repository for all recent versions of
`openSUSE <http://www.opensuse.org/>`_. To add this repository to the YAST
software management tool, see
http://en.opensuse.org/Add_Package_Repositories_to_YaST
+Mpmath is provided in the "Science" repository for all recent versions of
`openSUSE <http://www.opensuse.org/en/>`_. To add this repository to the
YAST software management tool, see
http://en.opensuse.org/SDB:Add_package_repositories

Look up http://download.opensuse.org/repositories/science/ for a list
of supported OpenSUSE versions and use
http://download.opensuse.org/repositories/science/openSUSE_11.1/
@@ -99,7 +99,7 @@

which will cut the running time in half.

-If any test fails, please send a detailed bug report to the `mpmath issue
tracker <http://code.google.com/p/sympy/issues/list>`_. The tests can also
be run with `py.test <http://codespeak.net/py/dist/>`_. This will sometimes
generate more useful information in case of a failure.
+If any test fails, please send a detailed bug report to the `mpmath issue
tracker <http://code.google.com/p/sympy/issues/list>`_. The tests can also
be run with `py.test <http://pylib.org/>`_. This will sometimes generate
more useful information in case of a failure.

To run the tests with support for gmpy disabled, use

@@ -176,3 +176,4 @@

See the help for ``sage.libs.mpmath.all`` for further information.

+
=======================================
--- /trunk/doc/source/technical.txt Wed Jul 28 13:09:06 2010
+++ /trunk/doc/source/technical.txt Tue Mar 22 17:00:25 2011
@@ -78,7 +78,7 @@
Decimal issues
--------------

-Mpmath uses binary arithmetic internally, while most interaction with the
user is done via the decimal number system. Translating between binary and
decimal numbers is a somewhat subtle matter; many Python novices run into
the following "bug" (addressed in the `General Python FAQ
<http://www.python.org/doc/faq/general/#why-are-floating-point-calculations-so-inaccurate>`_)::
+Mpmath uses binary arithmetic internally, while most interaction with the
user is done via the decimal number system. Translating between binary and
decimal numbers is a somewhat subtle matter; many Python novices run into
the following "bug" (addressed in the `General Python FAQ
<http://docs.python.org/faq/design.html#why-are-floating-point-calculations-so-inaccurate>`_)::

>>> 0.1
0.10000000000000001
@@ -155,5 +155,5 @@

There are many excellent textbooks on numerical analysis and
floating-point arithmetic. Some good web resources are:

-* `David Goldberg, What Every Computer Scientist Should Know About
Floating-Point Arithmetic
<http://docs.sun.com/source/806-3568/ncg_goldberg.html>`_
+* `David Goldberg, What Every Computer Scientist Should Know About
Floating-Point Arithmetic
<http://www.cl.cam.ac.uk/teaching/1011/FPComp/floatingmath.pdf>`_
* `The Wikipedia article about numerical analysis
<http://en.wikipedia.org/wiki/Numerical_analysis>`_
=======================================
--- /trunk/mpmath/calculus/optimization.py Sat Jan 8 14:54:03 2011
+++ /trunk/mpmath/calculus/optimization.py Tue Mar 22 17:00:25 2011
@@ -620,7 +620,7 @@

[1] http://scipy.org

- [2] http://openopt.org
+ [2] http://openopt.org/Welcome
"""
maxsteps = 10

=======================================
--- /trunk/mpmath/function_docs.py Tue Feb 1 12:29:05 2011
+++ /trunk/mpmath/function_docs.py Tue Mar 22 17:00:25 2011
@@ -3335,7 +3335,7 @@
0.06674960718150520648014567


-[1] http://www.math.ucla.edu/~cbm/aands/page_504.htm
+[1] http://people.math.sfu.ca/~cbm/aands/page_504.htm
"""

hyp2f0 = r"""
@@ -3402,7 +3402,7 @@
[1.0, -2.0, 4.5, -7.5, 6.5625, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]


-[1] http://www.math.ucla.edu/~cbm/aands/page_504.htm
+[1] http://people.math.sfu.ca/~cbm/aands/page_504.htm
"""


@@ -3972,7 +3972,7 @@
http://functions.wolfram.com/GammaBetaErf/ExpIntegralEi/27/01/

2. Abramowitz & Stegun, section 5:
- http://www.math.sfu.ca/~cbm/aands/page_228.htm
+ http://people.math.sfu.ca/~cbm/aands/page_228.htm

3. Asymptotic expansion for Ei:
http://mathworld.wolfram.com/En-Function.html
@@ -6409,7 +6409,7 @@

**References**

-1. http://www.research.att.com/~njas/sequences/A000178
+1. http://oeis.org/A000178

"""

@@ -6512,7 +6512,7 @@

**References**

-1. http://www.research.att.com/~njas/sequences/A002109
+1. http://oeis.org/A002109
2. http://mathworld.wolfram.com/Hyperfactorial.html

"""

Reply all
Reply to author
Forward
0 new messages