-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.hpp
34 lines (22 loc) · 1.11 KB
/
functions.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once
#include <cstdlib>
#include <ctime>
#include <cmath>
#include "matrices.hpp"
#include "fourier.hpp"
#define GEN_LIM 10
#define PI 3.14159265
//генератор рандомных матриц
Matrix buildMatrix(unsigned int columnIndex, unsigned int rowIndex, int seed);
//генератор матрицы Фурье по некоторому основанию
Matrix buildFourier(unsigned int order, Complex base);
//эрмитово преобразование матрицы Фурье
Matrix transposeFourier(Matrix& matrix);
//возвращает значение ф(w) для дальнейшей работы с ним
std::vector<Complex> getFourierPolynom(Matrix& circulant, Complex fourierValue);
//возвращает значение полинома ф1(w)
std::vector<Complex> getSolution(std::vector<Complex>& tmpVector, Complex fourierValue);
//солвер циркулянтной системы
std::vector<Complex> solveCirculant(Matrix& circulant, Matrix& freeColumn);
//генератор рандомного циркулянта
Matrix buildCirculant(unsigned int order, int seed);