pub fn bspldnev_single_f64(
x: &f64,
i: usize,
k: &usize,
t: &Vec<f64>,
m: usize,
org_k: Option<usize>,
) -> f64Expand description
Evaluate the m’th order derivative of the x value on the i’th B-spline with
order k and knot sequence t.
Note org_k should be input as None, it is used internally for recursively calculating
spline derivatives, where it is set to the original k value from the outer scope.