OpenANN  1.1.0
An open source library for artificial neural networks.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FANN.h
Go to the documentation of this file.
1 #ifndef OPENANN_IO_FANN_H_
2 #define OPENANN_IO_FANN_H_
3 
4 #include <Eigen/Core>
5 #include <iostream>
6 
7 namespace OpenANN
8 {
9 
10 namespace FANN
11 {
12 
24 int load(Eigen::MatrixXd& in, Eigen::MatrixXd& out, const char* filename);
25 
37 int load(Eigen::MatrixXd& in, Eigen::MatrixXd& out, std::istream& stream);
38 
46 void save(const Eigen::MatrixXd& in, const Eigen::MatrixXd& out, const char* filename);
47 
56 void save(const Eigen::MatrixXd& in, const Eigen::MatrixXd& out, std::ostream& stream);
57 
58 } // namespace FANN
59 
60 } // namespace OpenANN
61 
62 #endif // OPENANN_IO_FANN_H_