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  A.Save("filedat.txt");
36 
37  Pds::Matrix B(Pds::Ra::TextFormat,"filedat.txt");
38  B.Print("B\n");
39 
40  B.ExportMatFile("B","matfile.mat");
41  return 0;
42 }
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:86
@ TextFormat
Definition: RaDefines.hpp:161

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed