Please enable JavaScript in your browser!
Startseite
Erkunden
Hilfe
Anmelden
Matt
/
lisp-poly-calculator
Mirror von
https://github.com/matt-coles/lisp-poly-calculator
Beobachten
1
Favorit hinzufügen
0
Fork
0
Code
Issues
0
Commits
11
Releases
0
Wiki
A simple polynomial calculator in lisp
Struktur:
d759090578
Branches
Tags
master
lisp-poly-calculator
HTTPS
ZIP
TAR.GZ
Matt Coles
d759090578
Add more tests and improved README
vor 10 Jahren
LICENSE
ce4d46795d
Initial commit
vor 10 Jahren
README.md
d759090578
Add more tests and improved README
vor 10 Jahren
poly.cl
2c7b699d1b
Fully comment poly.cl and add new tests.cl with some testing
vor 10 Jahren
tests.cl
d759090578
Add more tests and improved README
vor 10 Jahren
README.md
LISP Polynomial Calculator
A simple polynomial calculator in lisp
Polynomials are in the form '(((SYMBOL EXPONENT) MULTIPLIER) ((SYMBOL EXPONENT) MULTIPLIER))
For example this: '(((x 2) 5) ((((x y) (2 3)) 5))) \= 5x^2 + 5x^2y^3