00001
00002
00003
00004
00005
00006
00007
00008 #ifndef TEXTIO_H_
00009 #define TEXTIO_H_
00010
00011 #include <iostream>
00012 #include <sstream>
00013 #include <vector>
00014 #include <fstream>
00015 #include <complex>
00016 #include <limits>
00017 #include "../Utility/types.h"
00018 #include "../Utility/misc.h"
00019 #include "../Utility/random_generator.h"
00020 #include "binaryIO.h"
00021
00022 typedef std::numeric_limits< double > dbl;
00023
00024
00025
00031 void saveMatrixText(std::string filename, CDMatrix& m, bool exactValue=false);
00032
00033
00039 void saveMatrixText(std::string filename, DMatrix& m, bool exactValue=false);
00040
00041
00047 void loadMatrixText(std::string filename, CDMatrix& m);
00048
00049
00055 void loadMatrixText(std::string filename, DMatrix& m);
00056
00057 #endif