#include "textIO.h"
Functions | |
void | saveMatrixText (std::string filename, CDMatrix &m, bool exactValue) |
void | saveMatrixText (std::string filename, DMatrix &m, bool exactValue) |
void | loadMatrixText (std::string filename, CDMatrix &m) |
void | loadMatrixText (std::string filename, DMatrix &m) |
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