root/applications/trading_models/trading_models_lib.h @ 1347

Revision 1347, 464 bytes (checked in by pierre2, 13 years ago)

trading models, upravene pomocou C-Make, pridany robust

RevLine 
[1260]1/*!
2  \file
3  \brief Robust Bayesian auto-regression model
4  \author Jan Sindelar.
5*/
6
[1347]7#ifndef trading_models_LIB_H
8#define trading_models_LIB_H
[1260]9
10#include <stat/exp_family.h>
11       
12using namespace bdm;
13using namespace std;
[1347]14using namespace itpp;
[1260]15
16class my_pdf: public egamma {
17        public:
18        my_pdf():egamma(){cout << "hello world"<<endl;}
19};
20
[1347]21 
[1260]22//! Robust Bayesian AR model for Multicriteria-Laplace-Inverse-Gamma density
23class my_BM : public BM{
24};
25
26
27#endif //EXAMPLE_LIB
Note: See TracBrowser for help on using the browser.