From d5dabb0e23750b24c3af8e7848a72da474c9867f Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Wed, 22 Jan 2020 15:00:10 +0100 Subject: [PATCH] CMSIS-DSP:Correction for issue 344 --- Source/FastMathFunctions/arm_cos_f32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/FastMathFunctions/arm_cos_f32.c b/Source/FastMathFunctions/arm_cos_f32.c index 4483e3ef..e9a7d7b1 100644 --- a/Source/FastMathFunctions/arm_cos_f32.c +++ b/Source/FastMathFunctions/arm_cos_f32.c @@ -52,8 +52,8 @@ where
-     b = Table[index];
-     c = Table[index+1];
+     a = Table[index];
+     b = Table[index+1];
   
*/