Please enable JavaScript in your browser!
Accueil
Explorer
Aide
Connexion
Matt
/
lisp-poly-calculator
miroir de
https://github.com/matt-coles/lisp-poly-calculator
Suivre
1
Voter
0
Fork
0
Code
Tickets
0
Commits
11
Publications
0
Wiki
A simple polynomial calculator in lisp
Aborescence:
d759090578
Branches
Tags
master
lisp-poly-calculator
HTTPS
ZIP
TAR.GZ
Matt Coles
d759090578
Add more tests and improved README
il y a 10 ans
LICENSE
ce4d46795d
Initial commit
il y a 10 ans
README.md
d759090578
Add more tests and improved README
il y a 10 ans
poly.cl
2c7b699d1b
Fully comment poly.cl and add new tests.cl with some testing
il y a 10 ans
tests.cl
d759090578
Add more tests and improved README
il y a 10 ans
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