|
Revision 1347, 464 bytes
(checked in by pierre2, 15 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 | |
|---|
| 12 | using namespace bdm; |
|---|
| 13 | using namespace std; |
|---|
| 14 | using namespace itpp; |
|---|
| 15 | |
|---|
| 16 | class 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 |
|---|
| 23 | class my_BM : public BM{ |
|---|
| 24 | }; |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | #endif //EXAMPLE_LIB |
|---|