root/doc/local/mainpage.dox @ 271

Revision 167, 1.5 kB (checked in by smidl, 16 years ago)

added documentation

Line 
1/*!
2\mainpage Bayesian Decision-Making toolbox for C++
3
4\version 0.1
5
6\author Vaclav Smidl
7
8BDM is a collection of methods for selected tasks of Bayesian decision-making, such as estimation, filtering and control.
9
10\section Approach
11The toolbox is designed using two design criteria:
12\li relation to mathematics,
13\li efficient evaluation,
14while the first one is more important than the latter.
15
16Hence, each mathematical object such as probability density is represented by one software object. The resulting algorithms are then implemented as operations on these objects. In cases when more efficient solution can be achived when this structure is not respected, a parallel implementation is created and clearly marked as specific.
17
18\section Methods
19At present we support the following methods:
20\li Estimation: ARX models
21\li Filtering: Kalman filtering, Extended %Kalman filters (EKF), Particle filters (PF), Marginalized Particle filters (MPF).
22\li Desing: None.
23
24\section Implementation
25
26 BDM is build on top of \c IT++ which wraps numerically efficient operations of linear algebra into easy to use C++ classes. Thanks to this excellent library, writing of numerical algorithms is as easy as in Matlab but we gain significant advantages:
27
28\li computational speed comparable to built-in Matlab function, and surpassing interpreted Matlab in order of magnitudes,
29\li native support for object-oriented programming,
30\li support for templates which is often more appropriate than object-oriented programming,
31\li cross-platform compatibility.
32
33
34
35*/
Note: See TracBrowser for help on using the browser.