root/library/doc/tutorial/005userguide0.dox @ 659

Revision 659, 2.8 kB (checked in by mido, 15 years ago)

synchronization of documentation pages names

Line 
1/*!
2\page userguide0 BDM Use - Introduction
3
4BDM is a library of basic components for Bayesian decision making, hence its direct use is not possible. In order to use BDM the components must be pulled together in order to achieve desired functionality. We expect two kinds of users:
5
6 - <b> Experimentators </b> who run prepared scripts with different parameterizations and analyze their results,
7 - <b> Algorithms designers </b> who are able to understand the logic of BDM and extend its functionality to new applications.
8
9The primary design aim of BDM was to ease development of complex algorithms, hence the target user is the latter.
10However, running experiments is the first task to learn for both types of users.
11
12
13\section param Experiment is fully parameterized before execution
14
15Experiments in BDM can be performed using either standalone applications or function bindings in high-level environment. A typical example of the latter being mex file in Matlab environment.
16
17The main logic behind the experiment is that all necessary information about it are gathered in advance in a configuration file (for standalone applications) or in configuration structure (Matlab).
18This approach was designed especially for time consuming  experiments and Monte-Carlo studies for which it suits the most.
19
20For smaller decision making tasks, interactive use of the experiment can be achieved by showing the full configuration structure (or its selected parts), running the experiment on demand and showing the results.
21
22Semi-interactive experiments can be designed by sequential run of different algorithms. This topic will be covered in advanced documentation.
23
24\section secnario Prepared Scenarios
25
26Since some tasks are repeatedly occuring in practical applications of decision making, these tasks has been identified and prepared as standalone applications (or mex files). These taska are implemented in separate toolbox - bdmtoolbox. Binary version of the toolbox is available see \ref install.
27
28The predefined scenarios are:
29 - <b>Data simulation</b>: a task that arise in modelling of real physical experiment. For example, this scenario allows empirical comparison of observed and simulated data.
30 - <b>Sequential estimation</b>: the previous scenario is extended by on-line estimation of model parameters. It allows to run multiple estimators in parallel allowing their mutual comparison.
31 - <b>Closed loop</b>: sequantial estimation from previous step is complemneted by adaptive controller (or decision maker) that designs control strategy for the next step.
32
33These scenarios may serve as a starting point for advanced users who can design specific algorithms tailored for given application domain.
34
35A tutorial how to run the scenarios are:
36
37 - \ref userguide
38 - \ref userguide2
39
40*/
Note: See TracBrowser for help on using the browser.