CMSIS-DSP: Added new functions to Python wrapper
diff --git a/CMSIS/DSP/setup.py b/CMSIS/DSP/setup.py
index 8d7cca8..043a24d 100644
--- a/CMSIS/DSP/setup.py
+++ b/CMSIS/DSP/setup.py
@@ -129,18 +129,18 @@
 transformMod = transform + common + basic + complexf + fastmath + matrix + statistics
 statisticsMod = statistics + common + fastmath + basic
 interpolationMod = interpolation + common
-filteringMod = filtering + common + support + fastmath
+filteringMod = filtering + common + support + fastmath + basic
 controllerMod = controller + common
 
 matrixMod = matrix 
 supportMod = support 
-complexfMod = complexf + fastmath + common
+complexfMod = complexf + fastmath + common + basic
 basicMod = basic
 quaternionMod = quaternion
-fastmathMod = fastmath + common
+fastmathMod = basic + fastmath + common
 distanceMod = distance + common + basic + statistics + fastmath
 bayesMod = bayes + fastmath + common + statistics + basic
-svmMod = svm + fastmath + common
+svmMod = svm + fastmath + common + basic
 
 
 filteringMod.append(os.path.join("PythonWrapper","cmsisdsp_pkg","src","cmsisdsp_filtering.c"))