#include "misc.h"
Functions | |
std::string | itos (int n) |
std::string | stringConverter (int K, int nth) |
void | save_two_arrays (std::string filename, std::vector< double > &array1, std::vector< double > &array2) |
void | save_two_arrays (std::string filename, std::vector< int > &array1, std::vector< double > &array2) |
void | save_two_arrays (std::string filename, std::vector< double > &array1, std::vector< dcomplex > &array2) |
int | max (int a, int b) |
int | min (int a, int b) |
double | stringToDouble (std::string numString) |
int | stringToInteger (std::string numString) |
std::complex< double > | stringToComplex (std::string numString) |
std::string | numToString (double number) |
void | read_double_column (std::string filename, int column, std::vector< double > &array) |
std::vector< double > | linspace (double start, double stop, int num) |
std::string itos | ( | int | n | ) |
std::vector<double> linspace | ( | double | start, | |
double | stop, | |||
int | num | |||
) |
int max | ( | int | a, | |
int | b | |||
) |
int min | ( | int | a, | |
int | b | |||
) |
std::string numToString | ( | double | number | ) |
void read_double_column | ( | std::string | filename, | |
int | column, | |||
std::vector< double > & | array | |||
) |
void save_two_arrays | ( | std::string | filename, | |
std::vector< double > & | array1, | |||
std::vector< dcomplex > & | array2 | |||
) |
void save_two_arrays | ( | std::string | filename, | |
std::vector< int > & | array1, | |||
std::vector< double > & | array2 | |||
) |
void save_two_arrays | ( | std::string | filename, | |
std::vector< double > & | array1, | |||
std::vector< double > & | array2 | |||
) |
std::string stringConverter | ( | int | K, | |
int | nth | |||
) |
std::complex<double> stringToComplex | ( | std::string | numString | ) |
double stringToDouble | ( | std::string | numString | ) |
int stringToInteger | ( | std::string | numString | ) |