root/doc/xml/indexpage.xml @ 255

Revision 187, 2.7 kB (checked in by smidl, 16 years ago)

doc

Line 
1<?xml version='1.0' encoding='UTF-8' standalone='no'?>
2<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="1.5.6">
3  <compounddef id="indexpage" kind="page">
4    <compoundname>index</compoundname>
5    <title>Bayesian Decision-Making toolbox for C++</title>
6    <detaileddescription>
7<para><simplesect kind="version"><para>0.1</para></simplesect>
8<simplesect kind="author"><para>Vaclav Smidl</para></simplesect>
9BDM is a collection of methods for selected tasks of Bayesian decision-making, such as estimation, filtering and control.</para><sect1 id="index_1Approach">
10<title>Approach</title>
11<para>The toolbox is designed using two design criteria: <itemizedlist>
12<listitem><para>relation to mathematics, </para></listitem>
13<listitem><para>efficient evaluation, while the first one is more important than the latter.</para></listitem>
14</itemizedlist>
15Hence, 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.</para></sect1>
16<sect1 id="index_1Methods">
17<title>Methods</title>
18<para>At present we support the following methods: <itemizedlist>
19<listitem><para>Estimation: <ref refid="classARX" kindref="compound">ARX</ref> models </para></listitem>
20<listitem><para>Filtering: <ref refid="classKalman" kindref="compound">Kalman</ref> filtering, Extended Kalman filters (<ref refid="classEKF" kindref="compound">EKF</ref>), Particle filters (<ref refid="classPF" kindref="compound">PF</ref>), Marginalized Particle filters (<ref refid="classMPF" kindref="compound">MPF</ref>). </para></listitem>
21<listitem><para>Desing: None.</para></listitem>
22</itemizedlist>
23</para></sect1>
24<sect1 id="index_1Implementation">
25<title>Implementation</title>
26<para>BDM is build on top of <computeroutput>IT++</computeroutput> 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:</para><para><itemizedlist>
27<listitem><para>computational speed comparable to built-in Matlab function, and surpassing interpreted Matlab in order of magnitudes, </para></listitem>
28<listitem><para>native support for object-oriented programming, </para></listitem>
29<listitem><para>support for templates which is often more appropriate than object-oriented programming, </para></listitem>
30<listitem><para>cross-platform compatibility. </para></listitem>
31</itemizedlist>
32</para></sect1>
33    </detaileddescription>
34  </compounddef>
35</doxygen>
Note: See TracBrowser for help on using the browser.