Home | Develop | Download | Contact
example_matrix_export.cpp
1 
24 #include <cmath>
25 #include <Pds/Ra>
26 
27 int main(void)
28 {
29  Pds::Matrix A(2,3);
30 
31  A.FillId();
32  A.Print("\nA:\n");
33 
34  A.ExportCsvFile("filename.csv",';');
35 
36  std::vector<std::string> title={"A title","B title","C title"};
37  A.ExportCsvFile("filename_title.csv",title);
38 
39  A.Save("filedat.txt");
40 
41 
42 
43  Pds::Matrix B(Pds::Ra::TextFormat,"filedat.txt");
44  B.Print("B\n");
45 
46  B.ExportMatFile("B","matfile.mat");
47  return 0;
48 }
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:86
@ TextFormat
Definition: RaDefines.hpp:154

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed