#include <iostream>
#include <sstream>
#include <vector>
#include <fstream>
#include <complex>
#include <limits>
#include "../Utility/types.h"
#include "../Utility/misc.h"
#include "../Utility/random_generator.h"
#include "binaryIO.h"
Go to the source code of this file.
Typedefs | |
typedef std::numeric_limits< double > | dbl |
Functions | |
void | saveMatrixText (std::string filename, CDMatrix &m, bool exactValue=false) |
void | saveMatrixText (std::string filename, DMatrix &m, bool exactValue=false) |
void | loadMatrixText (std::string filename, CDMatrix &m) |
void | loadMatrixText (std::string filename, DMatrix &m) |
typedef std::numeric_limits< double > dbl |
void loadMatrixText | ( | std::string | filename, | |
DMatrix & | m | |||
) |
load a real matrix from a text file (slow compared with the binary version)
row_index col_index matrix_element
void loadMatrixText | ( | std::string | filename, | |
CDMatrix & | m | |||
) |
load a complex matrix from a text file (slow compared with the binary version)
row_index col_index real_part imag_part
void saveMatrixText | ( | std::string | filename, | |
DMatrix & | m, | |||
bool | exactValue | |||
) |
save a real matrix into a text file
row_index col_index matrix_element
void saveMatrixText | ( | std::string | filename, | |
CDMatrix & | m, | |||
bool | exactValue | |||
) |
save a complex matrix into a text file
row_index col_index real_part imag_part