diff --git a/numerical_methods/fast_fourier_transform.cpp b/numerical_methods/fast_fourier_transform.cpp index 3ba53b2b9..9d9a6bb42 100644 --- a/numerical_methods/fast_fourier_transform.cpp +++ b/numerical_methods/fast_fourier_transform.cpp @@ -8,10 +8,10 @@ * @author [Ameya Chawla](https://github.com/ameyachawlaggsipu) */ -#include -#include -#include -#include +#include//Standard Library for input and output +#include//For sine,cosine functions +#include//For storing points and coefficents +#include //For Assertions # define pi 3.14159265358979323846 using namespace std;