Home | Develop | Download | Contact
example_ensembleperceptron_export.cpp
1 
49 #include <iostream>
50 #include <Pds/Ra>
51 #include <Pds/Ml>
52 
53 
54 int main(void)
55 {
56  Pds::Matrix ColsW="1.0 2.0 1.0 1.0\n-1.1 -1.2 -1.1 -1.0\n2.1 2.2 2.1 2.0";
57 
58  // Create Perceptron
59  Pds::EnsemblePerceptron EP0(ColsW);
60  EP0.Print("\nEP0:\n");
61 
62  std::string filename="ensemble1.txt";
63 
64  EP0.ExportFile(filename);
65 
66  std::cout<<"+++ All data saved.\n";
67 
68  // Test export import
69  Pds::EnsemblePerceptron EP1(filename);
70  EP1.Print("\nEP1:\n");
71 
72  return 0;
73 }
La clase tipo Pds::EnsemblePerceptron . Esta clase genera una matriz de Nlin lineas y 1 columna....

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed