This commit is contained in:
2026-01-04 15:35:46 +01:00
commit f53b8768f8
70 changed files with 51910 additions and 0 deletions

12
P4/Fourier.h Executable file
View File

@@ -0,0 +1,12 @@
#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