CMSIS-DSP: Correction to spline function to be able to build examples

Correction of CMSIS-DSP version number for binary version of the CMSIS-DSP.
pull/19/head
Christophe Favergeon 6 years ago
parent ecb9df9e18
commit 56ad8dd096

@ -71,10 +71,6 @@ void arm_spline_init_f32(
float32_t * coeffs,
float32_t * tempBuffer)
{
S->x = x;
S->y = y;
S->n_x = n;
/*** COEFFICIENTS COMPUTATION ***/
/* Type (boundary conditions):
- Natural spline ( S1''(x1) = 0 ; Sn''(xn) = 0 )
@ -95,6 +91,10 @@ void arm_spline_init_f32(
int32_t i; /* Loop counter */
S->x = x;
S->y = y;
S->n_x = n;
/* == Solve LZ=B to obtain z(i) and u(i) == */
/* -- Row 1 -- */

Loading…
Cancel
Save