From ce20476622cf0442690b94284352e290f912d23c Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Fri, 3 Feb 2023 14:57:02 +0000 Subject: Update the fft post for styling --- md/writeup/naive_fft_implementation_in_c.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/md/writeup/naive_fft_implementation_in_c.md b/md/writeup/naive_fft_implementation_in_c.md index 0008483..d54dd05 100644 --- a/md/writeup/naive_fft_implementation_in_c.md +++ b/md/writeup/naive_fft_implementation_in_c.md @@ -12,12 +12,11 @@ MathJax = { } }; - - + Time to implement DFT/FFT by myself. Just followed Ifeachor book on theory part and IOWA FFT source on implementation side. @@ -328,11 +325,15 @@ Here hookedup demo of compiled wasm fft code location of demo source http://git. 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: - + +Input I: +
+Input Q: +
+Output I: +
+Output Q: +
### Source @@ -341,7 +342,7 @@ Source located in main branch of git repo Browse source http://git.main.lv/cgit.cgi/NaiveFFT.git -``` +```bash git clone http://git.main.lv/cgit.cgi/NaiveFFT.git git checkout main ``` @@ -350,7 +351,7 @@ git checkout main #### Linux -``` +```bash cd NaiveFFT/Build make ``` -- cgit v1.2.3