[][src]Function cmsis_dsp_sys_pregenerated::arm_spline_init_f32

pub unsafe extern "C" fn arm_spline_init_f32(
    S: *mut arm_spline_instance_f32,
    type_: Type,
    x: *const float32_t,
    y: *const float32_t,
    n: u32,
    coeffs: *mut float32_t,
    tempBuffer: *mut float32_t
)

@brief Initialization function for the floating-point cubic spline interpolation. @param[in,out] S points to an instance of the floating-point spline structure. @param[in] type type of cubic spline interpolation (boundary conditions) @param[in] x points to the x values of the known data points. @param[in] y points to the y values of the known data points. @param[in] n number of known data points. @param[in] coeffs coefficients array for b, c, and d @param[in] tempBuffer buffer array for internal computations