A simple polynomial calculator in lisp
|
|
vor 10 Jahren | |
|---|---|---|
| LICENSE | vor 10 Jahren | |
| README.md | vor 10 Jahren | |
| poly.cl | vor 10 Jahren | |
| tests.cl | vor 10 Jahren |
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