Please enable JavaScript in your browser!
首页
探索
帮助
登录
Matt
/
lisp-poly-calculator
镜像自地址
https://github.com/matt-coles/lisp-poly-calculator
关注
1
点赞
0
派生
0
代码
工单管理
0
提交历史
11
版本发布
0
Wiki
A simple polynomial calculator in lisp
目录树:
d759090578
分支列表
标签列表
master
lisp-poly-calculator
HTTPS
ZIP
TAR.GZ
Matt Coles
d759090578
Add more tests and improved README
10 年之前
LICENSE
ce4d46795d
Initial commit
10 年之前
README.md
d759090578
Add more tests and improved README
10 年之前
poly.cl
2c7b699d1b
Fully comment poly.cl and add new tests.cl with some testing
10 年之前
tests.cl
d759090578
Add more tests and improved README
10 年之前
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