Update numerical_methods/fast_fourier_transform.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Ameya Chawla 2021-10-21 08:12:13 +05:30 committed by GitHub
parent b5eabc1196
commit 3b31104a8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,6 +80,7 @@ std::complex<double> *FastFourierTransform(std::complex<double> *p,
delete[] po; /// Deleting dynamic array po
return y; /// Returns the list
}
} // namespace numerical_methods
/**
* @brief Self-test implementations