]> gitweb.factorcode.org Git - factor.git/blob - extra/math/runge-kutta/runge-kutta-docs.factor
Adds runge-kutta implementation for n dimensions
[factor.git] / extra / math / runge-kutta / runge-kutta-docs.factor
1 USING: help.markup help.syntax ;
2 IN: math.runge-kutta 
3
4 HELP: <runge-kutta-4>
5 { $description "Simple runge-kutta implementation for generating 4th-order approximated solutions for a set of first order differential equations" }
6 { $examples
7     "A lorenz attractor is a popular system to model with this: "
8     { $code "USING: runge-kutta runge-kutta.examples ;" "lorenz." }
9     "note that the produced chart is a 2 dimensional representation of a 3 dimensional solution. "
10     "Similarly, the rabinovich-fabrikant system (stable alpha-gamma limit cycle): "
11     { $code "USING: runge-kutta runge-kutta.examples ;" "rabinovich-fabrikant." }
12 } ;
13