root/applications/trading_models/trading_models_lib.h

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

trading models, upravene pomocou C-Make, pridany robust

Line 
1/*!
2  \file
3  \brief Robust Bayesian auto-regression model
4  \author Jan Sindelar.
5*/
6
7#ifndef trading_models_LIB_H
8#define trading_models_LIB_H
9
10#include <stat/exp_family.h>
11       
12using namespace bdm;
13using namespace std;
14using namespace itpp;
15
16class my_pdf: public egamma {
17        public:
18        my_pdf():egamma(){cout << "hello world"<<endl;}
19};
20
21 
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.