pypol Code
Status: Beta
Brought to you by:
micettonero
File | Date | Author | Commit |
---|---|---|---|
COPYING | 2007-08-10 | micettonero | [r125] |
COPYING.LESSER | 2007-08-10 | micettonero | [r125] |
MANIFEST | 2007-08-10 | micettonero | [r131] |
README | 2007-08-10 | micettonero | [r129] |
pypol.py | 2008-07-16 | micettonero | [r143] faster monomial division |
pypol_test.py | 2007-08-24 | micettonero | [r139] |
setup.py | 2007-08-24 | micettonero | [r139] |
README ====== The aim of this project is to provide an easy-to-use, fast and reusable Python module to manage monomials, polynomials and algebraic fraction. It's written in 100% pure Python. Installing ========== To install the module, if you are on a *NIX platform you have to: - Extract the package somewhere - Enter the package directory - $ python setup.py install Otherwise, if you're using Windows you can also install the package double-clicking on the precompiled .exe and following the instructions. On Red Hat you can use the precompiled RPM package. Testing ======= $ python pypol_test.py Using ===== http://pypol.sourceforge.net/docs or: $ python >>> from pypol import Monomial, Polynomial, AlgebraicFraction >>> help(Monomial) ... >>> help(Polynomial) ... >>> help(AlgebraicFraction) ...