00001 /* 00002 * MatrixIO.h 00003 * 00004 * Created on: Oct 31, 2014 00005 * Author: pxiang 00006 */ 00007 00008 #ifndef MATRIXIO_H_ 00009 #define MATRIXIO_H_ 00010 00011 #include "binaryIO.h" 00012 #include "textIO.h" 00013 00020 void saveMatrix(const std::string filename, CDMatrix& gf); 00021 00028 void saveMatrix(const std::string filename, DMatrix& gf); 00029 00030 00034 void loadMatrix(const std::string filename, CDMatrix& gf); 00035 00039 void loadMatrix(const std::string filename, DMatrix& gf); 00040 00041 00042 #endif /* MATRIXIO_H_ */