SCL  1.0
Standard Control Library : Control, dynamics, physics, and simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Macros Groups Pages
Decoder.hpp
1 /*
2  * Decoder.hpp
3  *
4  * Created on: Aug 15, 2014
5  * Author: nayan
6  */
7 
8 #ifndef DECODER_HPP_
9 #define DECODER_HPP_
10 #include <scl/DataTypes.hpp>
11 #include "Neurons.hpp"
12 
13 namespace scl_test
14 {
15 class Decoder {
16 public:
17  Decoder();
18  virtual ~Decoder();
19 
23  Neurons arg_ng ,
25  Eigen::MatrixXd arg_target ,
27  scl::sFloat arg_noise,
29  Eigen::MatrixXd & ret_decoder
30  );
31 };
32 }
33 
34 #endif /* DECODER_HPP_ */
Definition: Decoder.hpp:15
Definition: Neurons.hpp:16
scl::sBool classic(Neurons arg_ng, Eigen::MatrixXd arg_target, scl::sFloat arg_noise, Eigen::MatrixXd &ret_decoder)
Definition: Decoder.cpp:21
bool sBool
Definition: DataTypes.hpp:54
double sFloat
Definition: DataTypes.hpp:72