Simple Module
Functions and values
Function or value | Description |
Full Usage:
rungeKutta4Variable currentStep steps t x f tt xx
Parameters:
float
steps : float list
t : float
x : float
f : float -> float -> float
tt : float list
xx : float list
Returns: float list * float list
|
|
Full Usage:
rungekutta4 x y h n f xx yy
Parameters:
float
y : float
h : float
n : float
f : float -> float -> float
xx : float list
yy : float list
Returns: float list * float list
|
|
Full Usage:
rungekutta4' x y h f
Parameters:
float
y : float
h : float
f : float -> float -> float
Returns: float
|
|
Full Usage:
rungekutta4dual t x y h n f g tt xx yy
Parameters:
float
x : float
y : float
h : float
n : float
f : float -> float -> float -> float
g : float -> float -> float -> float
tt : float list
xx : float list
yy : float list
Returns: float list * float list * float list
|
|
Full Usage:
rungekutta4dual' t x y h f g
Parameters:
float
x : float
y : float
h : float
f : float -> float -> float -> float
g : float -> float -> float -> float
Returns: float * float
|
|