From b8b4533adf84e3771c4041a3121364b956ec694f Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Fri, 27 Aug 2021 23:13:46 +0100 Subject: Added wasm demo for fft --- md/writeup/naive_fft_implementation_in_c.md | 123 ++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) (limited to 'md/writeup') diff --git a/md/writeup/naive_fft_implementation_in_c.md b/md/writeup/naive_fft_implementation_in_c.md index e5729ee..d82cc57 100644 --- a/md/writeup/naive_fft_implementation_in_c.md +++ b/md/writeup/naive_fft_implementation_in_c.md @@ -16,6 +16,115 @@ MathJax = { + + Time to implement DFT/FFT by myself. Just followed Ifeachor book on theory part and IOWA FFT source on implementation side. @@ -212,6 +321,20 @@ res4 = fft(data4) ``` +### Demo + +Here hookedup demo of compiled wasm fft code location of demo source http://git.main.lv/cgit.cgi/NaiveFFT.git/tree/Build/index.html?h=main + +Two boxes for input and two boxes for output. Values set as vectors of complex numbers. First box for real +part, second box for imaginary part or in case of DSP IQ sample values. + +Input I: +Input Q: +Output I: +Output Q: + + + ### Source Source located in main branch of git repo -- cgit v1.2.3