Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryukinix/symbolic-deriv
Symbolic Differentiation written in Racket
https://github.com/ryukinix/symbolic-deriv
calculus derivatives differentiation racket sicp symbolic
Last synced: about 1 month ago
JSON representation
Symbolic Differentiation written in Racket
- Host: GitHub
- URL: https://github.com/ryukinix/symbolic-deriv
- Owner: ryukinix
- License: mit
- Created: 2018-06-20T23:55:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-25T00:44:18.000Z (over 6 years ago)
- Last Synced: 2024-11-05T11:54:41.602Z (3 months ago)
- Topics: calculus, derivatives, differentiation, racket, sicp, symbolic
- Language: Racket
- Size: 76.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# symbolic-deriv
Symbolic Differentiation written in Racket.# How to use
``` racket
> (deriv '(* x x) x)
(* 2 x)
```