pub fn richardson_derivative<T, F>(
f: F,
x: T,
h: T,
order: usize,
) -> CoreResult<T>
Expand description
Stable numerical differentiation using Richardson extrapolation
pub fn richardson_derivative<T, F>(
f: F,
x: T,
h: T,
order: usize,
) -> CoreResult<T>
Stable numerical differentiation using Richardson extrapolation