Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/breuleux/earl-autodiff
Autodiff for Earl Grey
https://github.com/breuleux/earl-autodiff
Last synced: 9 days ago
JSON representation
Autodiff for Earl Grey
- Host: GitHub
- URL: https://github.com/breuleux/earl-autodiff
- Owner: breuleux
- Created: 2015-06-28T19:55:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-28T20:26:40.000Z (over 9 years ago)
- Last Synced: 2024-10-18T18:56:49.903Z (28 days ago)
- Size: 109 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
earl-autodiff
=============Autodiff macros for Earl Grey.
This wraps the [ad.js](https://github.com/iffsid/ad.js) package.
Usage:
require-macros:
earl-autodiff -> autodiffautodiff cube(x) =
x ** 3print cube(10) ;; 1000
print cube.derivative-f(10) ;; 300
print cube.derivative-f.derivative-f(10) ;; 60