richardson_derivative

Function richardson_derivative 

Source
pub fn richardson_derivative<T, F>(
    f: F,
    x: T,
    h: T,
    order: usize,
) -> CoreResult<T>
where T: Float + StableComputation, F: Fn(T) -> T,
Expand description

Stable numerical differentiation using Richardson extrapolation