sloisel / numeric

Numerical analysis in Javascript
http://www.numericjs.com/
Other
1.42k stars 177 forks source link

Automatic differentiation #24

Open sloisel opened 11 years ago

sloisel commented 11 years ago

Should this be implemented using an AD object? Can this AD object handle linear algebra? How much of it is orthogonal to numeric?

mikolalysenko commented 11 years ago

I think automatic differentiation is mostly orthogonal, but it should be doable. Probably the best approach is static analysis, using something like node-falafel:

https://github.com/substack/node-falafel

sloisel commented 11 years ago

I am currently leaning towards an AD object.