Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Exact ¶
type Exact struct {
// F is a function y(x) = f(x), the solution for the initial value problem,
// requires a constant, that is calculated with initial values
F func(x, c float64) (float64, error)
// C calculates the constant for the F
C func(x0, y0 float64) (float64, error)
}
Exact solver just draws the exact solution directly, without applying any specific algorithm
type ImprovedEuler ¶
ImprovedEuler method for solving initial value problem for differential equations
type Interface ¶
Interface describes methods that the solver should implement in order to solve the Initial Value problem
type RungeKutta ¶
RungeKutta method for solving initial value problem for differential equations
Click to show internal directories.
Click to hide internal directories.