From 5cd8142a8486fd501612ce55cbbe878cce9fbd32 Mon Sep 17 00:00:00 2001 From: ameyachawlaggsipu <88154798+ameyachawlaggsipu@users.noreply.github.com> Date: Thu, 7 Oct 2021 21:10:00 +0530 Subject: [PATCH] fix : added comments to header --- numerical_methods/fast_fourier_transform.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;