00001
00002
00003
00004
00005
00006
00007
00008 #ifndef MICS_H_
00009 #define MICS_H_
00010
00011 #include <iostream>
00012 #include <sstream>
00013 #include <vector>
00014 #include <fstream>
00015 #include <complex>
00016 #include <limits>
00017 #include "types.h"
00018 #include "misc.h"
00019
00020
00021
00022 std::string itos(int n);
00023 std::string stringConverter(int K, int nth);
00024
00025
00026 void save_two_arrays(std::string filename, std::vector<double>& array1,
00027 std::vector<double>& array2);
00028
00029 void save_two_arrays(std::string filename, std::vector<int>& array1,
00030 std::vector<double>& array2);
00031
00032
00033 void save_two_arrays(std::string filename, std::vector<double>& array1,
00034 std::vector<dcomplex>& array2) ;
00035
00036 int max(int a, int b);
00037
00038 int min(int a, int b);
00039
00040 double stringToDouble(std::string numString);
00041
00042 int stringToInteger(std::string numString);
00043
00044 std::complex<double> stringToComplex(std::string numString);
00045
00046 std::string numToString(double number);
00047
00048 void read_double_column(std::string filename, int column, std::vector<double>& array);
00049
00050 std::vector<double> linspace(double start, double stop, int num=100);
00051
00052
00053
00054
00055 #endif