Home | Develop | Download | Contact
example_matrix_export_json.cpp
1
20#include <cmath>
21#include <Pds/Ra>
22
23int main(void)
24{
25 Pds::Matrix A(2,3);
26
27 A.FillId();
28
29 std::ofstream myfile;
30 myfile.open("filedat.json");
31 A.ExportJsonToStream(myfile,1);
32 myfile.close();
33
34 std::cout<<"INIT\n";
35 std::cout<<A.ExportJsonToString(1);
36 std::cout<<"END\n";
37
38 return 0;
39}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed