diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2011-06-18 13:22:06 -0600 |
---|---|---|
committer | rgommers <ralf.gommers@googlemail.com> | 2011-06-20 22:14:02 +0200 |
commit | 008c9318789050ee53b3bd420b3610cf4c4f338e (patch) | |
tree | 115a39575c8d375d6d02cf52c9eb77e6b2c7abf4 /doc/source/reference/routines.polynomials.rst | |
parent | 4e52c48bd37abdce856033f48d3ce9c0a8c5483f (diff) | |
download | numpy-008c9318789050ee53b3bd420b3610cf4c4f338e.tar.gz |
ENH: Add the polynomial module to the documentation.
Also:
1. Note that the polynomial package is preferred over poly1d.
2. Remove deprecation of mapparms in __init__.py as it interferes with the
documention of the method of the same name. This is probably safe as it
is unlikely to be used yet.
3. Make some improvements to the documentation in polytemplate.
Diffstat (limited to 'doc/source/reference/routines.polynomials.rst')
-rw-r--r-- | doc/source/reference/routines.polynomials.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/source/reference/routines.polynomials.rst b/doc/source/reference/routines.polynomials.rst new file mode 100644 index 000000000..59d6bc499 --- /dev/null +++ b/doc/source/reference/routines.polynomials.rst @@ -0,0 +1,14 @@ +Polynomials +*********** + +The poly1d functions are considered outdated but are retained for +backward compatibility. New software needing polynomials should +use the classes in the Polynomial Package. + +.. toctree:: + :maxdepth: 2 + + routines.polynomials.polynomial + routines.polynomials.poly1d + + |