Function solve_rk4

Source
pub fn solve_rk4(
    f: CModule,
    x_span: Tensor,
    y0: Tensor,
    step: Tensor,
) -> Result<(Tensor, Tensor)>
Expand description

Solves ODE using Runge-Kutta 4th order method