Home | Develop | Download | Contact
example_fcnn_export_xml.cpp
1 
20 #include <Pds/Ra>
21 #include <Pds/Nn>
22 
23 int main(void)
24 {
25  std::vector<unsigned int> N={2,3,1};
26 
27  Pds::FCNn NN0=Pds::FCNn(N,Pds::Tanh,Pds::DTanh);
28  NN0.PrintStylized("\nNN0:\n");
29  std::string str=NN0.ExportXmlToString();
30 
31  Pds::FCNn NN1;
32  NN1.ImportXmlFromString(str);
33  NN1.PrintStylized("\nNN1:\n");
34 
35  std::ofstream myfile("FCNn1.xml", std::ofstream::out);
36  NN1.ExportXmlToStream(myfile);
37  myfile.close();
38 
39  return 0;
40 }
La clase tipo Pds::FCNn . Esta clase genera un objeto con dos parametros Nlin y Ncol....
Definition: FCNn.hpp:62
const std::string FCNn
Tag de un objeto de tipo Pds::FCNn.
Definition: NnDefines.hpp:165
bool ExportXmlToStream(std::ofstream &myfile) const
Salva los datos de la capa en un std::ofstream en formato Xml.
std::string ExportXmlToString(void) const
Salva los datos de la capa en un std::string en formato Xml.
bool ImportXmlFromString(const std::string &str)
Carga los datos de la capa.
void PrintStylized(std::string str="") const
Muestra en pantalla el contenido de Pds::FCNn, en el formato (Nli,Ncol).

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed