Files
HM2/P4/Fourier.h
2026-01-04 15:35:46 +01:00

13 lines
248 B
C++
Executable File

#ifndef __FOURIER_H__
# define __FOURIER_H__
#include <vector>
#include "CKomplex.h"
namespace Fourier
{
extern std::vector<CKomplex> hin(std::vector<CKomplex> werte);
extern std::vector<CKomplex> zurueck(std::vector<CKomplex> werte);
}
#endif