CSS product code  0.1
C++ library to estimate distance of CSS codes. Some particular construction of CSS codes are implemented.
mm_read.h
Go to the documentation of this file.
1 #ifndef MM_READ_H
2 #define MM_READ_H
3 
4 #include <itpp/itbase.h>
5 //#include <string>
6 
7 
8 
9 itpp::GF2mat MM_to_GF2mat(char * file_name);
10 
11 itpp::GF2mat MM_to_GF2mat(std::string file_name);
12 
13 
14 itpp::mat MM_to_mat(char * file_name);
15 itpp::mat MM_to_mat(std::string file_name);
16 
17 //the coordinate format is efficient for sparse matrix. for dense matrix, it is saved in collomn fashion, which can be read by the following file. It was included and checked in the MM_to_mat() function.
18 itpp::mat dense_MM_to_mat(char * file_name);
19 #endif
MM_to_mat
itpp::mat MM_to_mat(char *file_name)
Definition: mm_read.cpp:126
dense_MM_to_mat
itpp::mat dense_MM_to_mat(char *file_name)
Definition: mm_read.cpp:209
MM_to_GF2mat
itpp::GF2mat MM_to_GF2mat(char *file_name)
Definition: mm_read.cpp:49