33 lines
586 B
C++
33 lines
586 B
C++
#ifndef _DATAFUNC_H
|
|
#define _DATAFUNC_H
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include <cmath>
|
|
#include <iomanip>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <list>
|
|
#include "fftw3.h"
|
|
#include "vector"
|
|
|
|
#define DATA "-t"
|
|
#define COLS "-c"
|
|
#define HORIZATION_X "-x"
|
|
#define HORIZATION_Y "-y"
|
|
#define VERTICAL "-z"
|
|
#define RANGE "-r"
|
|
#define INTERVAL "-i"
|
|
#define OUTPUT "-o"
|
|
#define POWER "-w"
|
|
#define BOLDRED "\033[1m\033[31m"
|
|
#define RESET "\033[0m"
|
|
|
|
#define pi (4.0*atan(1.0))
|
|
|
|
using namespace std;
|
|
|
|
typedef vector<double> _1dArray;
|
|
|
|
#endif |