created C folder with FP_math.c, Makefile and plotter. FP_math have a FFT realisation with fixed-point math, and its tester

This commit is contained in:
2025-10-08 21:55:23 +03:00
parent 9c30fc4405
commit 1a9f820724
7 changed files with 1316 additions and 4 deletions

5
C/Makefile Normal file
View File

@ -0,0 +1,5 @@
all:
gcc FP_math.c -o FP_math -lm
clean:
-rm FP_math