Skip to content

Instantly share code, notes, and snippets.

@JSmol
JSmol / fft.c
Created September 13, 2023 01:36
FFT
#include "helpers.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
typedef struct cplx {
float re;
float im;