RungeKuttaAlgorithm Constructor |
Name | Description | |
---|---|---|
RungeKuttaAlgorithm(RungeKuttaAlgorithm, CopyContext) | Initializes a new instance as a copy of an existing instance. | |
RungeKuttaAlgorithm(Double, Double, Double) | Initializes a new instance of a Runge-Kutta algorithm with the given Butcher Tableau. y[n+1] = y[n] + h * Sum(i=0 to s){ b[i]*k[i] } k[i] = f(t[n] + c[i]*h, y[n] + Sum(j=0 to i-1){ a[i,j] * k[j] } ) |