Show
Ignore:
Timestamp:
09/18/09 00:17:38 (15 years ago)
Author:
smidl
Message:

doc + updated tutorial

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/html/user_guide.html

    r621 r632  
    33<head> 
    44<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> 
    5 <title>mixpp: Howto Use BDM - System, Data, Simulation</title> 
     5<title>mixpp: BDM Use - System, Data, Simulation</title> 
    66<link href="tabs.css" rel="stylesheet" type="text/css"/> 
    77<link href="doxygen.css" rel="stylesheet" type="text/css"/> 
     
    6363 
    6464 
    65 <h1><a class="anchor" id="user_guide">Howto Use BDM - System, Data, Simulation </a></h1><p>This section serves as introdustion to the scenario of data simulation. Since it is the simpliest of all scenarios defined in <a class="el" href="user_guide0.html">BDM Use - Introduction</a> it also serves as introduction to configuration of an experiment (see ui) and basic decision making objects (<a class="el" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">bdm::RV</a> and <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>).</p> 
     65<h1><a class="anchor" id="user_guide">BDM Use - System, Data, Simulation </a></h1><p>This section serves as introdustion to the scenario of data simulation. Since it is the simpliest of all scenarios defined in <a class="el" href="user_guide0.html">BDM Use - Introduction</a> it also serves as introduction to configuration of an experiment (see <a class="el" href="ui_page.html">User Infos and their use</a>) and basic decision making objects (<a class="el" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">bdm::RV</a> and <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>).</p> 
    6666<p>All experiments are demonstarted on scenario simulator which can be either standalone application of mex file (simulator.mex**).</p> 
    67 <h2><a class="anchor" id="config"> 
     67<h2><a class="anchor" id="ug_config"> 
    6868Configuration of an experiment</a></h2> 
    6969<p>Configuration file (or config structure) is organized as a tree of information. High levels represent complex structures, leafs of the tree are basic data elements such as strings, numbers or vectors.</p> 
     
    7171<p>The configuration has two possible options:</p> 
    7272<ul> 
    73 <li>configuration file using syntax of libconfig (see ui),</li> 
    74 <li>matlab structure. For the purpose of tutorial, we will use the matlab notation. These two options can be mutually converted from one to another using prepared mex files: config2mxstruct.mex and mxstruct2config.mex. Naturally, these scripts require matlab to run. If it is not available, manual conversion is relatively trivial, the major difference is in using different types of brackets (ui)</li> 
    75 </ul> 
    76 <h3><a class="anchor" id="first"> 
     73<li>configuration file using syntax of libconfig (see <a class="el" href="ui_page.html">User Infos and their use</a>),</li> 
     74<li>matlab structure. For the purpose of tutorial, we will use the matlab notation. These two options can be mutually converted from one to another using prepared mex files: config2mxstruct.mex and mxstruct2config.mex. Naturally, these scripts require matlab to run. If it is not available, manual conversion is relatively trivial, the major difference is in using different types of brackets (<a class="el" href="ui_page.html">User Infos and their use</a>)</li> 
     75</ul> 
     76<h3><a class="anchor" id="ug_first"> 
    7777First experiment</a></h3> 
    7878<p>The first experiment that can be performed is: </p> 
     
    8888 
    8989    ch0: [6x1 <span class="keywordtype">double</span>] 
    90 </pre></div><p>If you see this result, you have configured BDM correctly and you have sucessfully run you first experiment. In other cases, please check your installation, installation. All that the simulator did was actually copying <code>DS.Data</code> to <code>M.ch0</code>. Explanation of the experiment and the logic used there follows.</p> 
    91 <h2><a class="anchor" id="sim"> 
     90</pre></div><p>If you see this result, you have configured BDM correctly and you have sucessfully run you first experiment. In other cases, please check your installation, <a class="el" href="install.html">BDM Use - Installation</a>. All that the simulator did was actually copying <code>DS.Data</code> to <code>M.ch0</code>. Explanation of the experiment and the logic used there follows.</p> 
     91<h2><a class="anchor" id="ug_sim"> 
    9292Systems and DataSources</a></h2> 
    9393<p>In standard system theory, the system is typically illustrated graphically as: </p> 
     
    106106</ol> 
    107107<p>No fruther specification, e.g. if the data are pre-recorded or computed on-the-fly, are given. Specific behaviour of various DataSources is implemented as specialization of the root class <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>.</p> 
    108 <h2><a class="anchor" id="memds"> 
     108<h2><a class="anchor" id="ug_memds"> 
    109109DataSource of pre-recorded data -- MemDS</a></h2> 
    110 <p>The first experiment run in <a class="el" href="user_guide.html#first">First experiment</a> was actually an instance of DataSource of pre-recorded data that were stored in memory, i.e. the <a class="el" href="classbdm_1_1MemDS.html" title="Memory storage of off-line data column-wise.">bdm::MemDS</a> class.</p> 
     110<p>The first experiment run in first was actually an instance of DataSource of pre-recorded data that were stored in memory, i.e. the <a class="el" href="classbdm_1_1MemDS.html" title="Memory storage of off-line data column-wise.">bdm::MemDS</a> class.</p> 
    111111<p>Operation of such object is trivial, the data are stored as a matrix and the general operations defined above are specialized as follows:</p> 
    112112<ol type="1"> 
     
    129129DS.rowid = [1]; 
    130130</pre></div><p> Where the first line specifies a universal identification structure: random variable (<a class="el" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">bdm::RV</a>).</p> 
    131 <h2><a class="anchor" id="rvs"> 
     131<h2><a class="anchor" id="ug_rvs"> 
    132132What is RV and how to use it</a></h2> 
    133133<p>RV stands for <code>random</code> <code>variable</code> which is a description of random variable or its realization. This object playes role of identifier of elements of vectors of data (in datasources), expected inputs to functions (in pdfs), or required results (operations conditioning).</p> 
    134134<p>Mathematical interpretation of RV is straightforward. Consider pdf <img class="formulaInl" alt="$ f(a)$" src="form_142.png"/>, then <img class="formulaInl" alt="$ a $" src="form_143.png"/> is the part represented by RV. Explicit naming of random variables may seem unnecessary for many operations with pdf, e.g. for generation of a uniform sample from &lt;0,1&gt; it is not necessary to specify any random variable. For this reason, RV are often optional information to specify. However, the considered scenanrio <code>simulator</code> is build in a way that requires RV to be given.</p> 
     135<p>In software, <code>RV</code> has three compulsory properties:</p> 
     136<ul> 
     137<li><b>name</b>, unique identifier, two RV with the same name are considered to be identical</li> 
     138<li><b>size</b>, size of the random variable, if not given it is assumed to be 1,</li> 
     139<li><b>time</b>, more exactly time shift from <img class="formulaInl" alt="$ t $" src="form_18.png"/>, defaults to 0. For example, scalar <img class="formulaInl" alt="$ x_{t-2} $" src="form_178.png"/> is encoded as (name='x',sizes=1,time=-2). Each RV stores array of these elements, hence RV with: <div class="fragment"><pre class="fragment"> names={<span class="charliteral">&apos;a&apos;</span>, <span class="charliteral">&apos;b&apos;</span>}; 
     140 sizes=[ 2 , 3]; 
     141 times=[-1, 1]; 
     142</pre></div> denotes 5-dimensional vector <img class="formulaInl" alt="$ [a_{t-1}', b_{t+1}] $" src="form_179.png"/>.</li> 
     143</ul> 
     144<h3><a class="anchor" id="ug_rv_alg"> 
     145Algebra on RVs</a></h3> 
     146<p>Algebra on RVs (adding, searching in, subtraction, intersection, etc.) is implemented, see <a class="el" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">bdm::RV</a>.</p> 
     147<p>For convenience in Matlab, the following operations are defined:</p> 
     148<ul> 
     149<li>RV(names,sizes,times) creates configuration structure for RV,</li> 
     150<li>RVjoin(rvs) joins configuration structures for array of RVs rvs=[rv1,rv2,...],</li> 
     151<li>RVtimes(rvs,times) assign times to corresponding rvs.</li> 
     152</ul> 
     153<p>See examples in bdmtoolbox/tutorial/userguide</p> 
     154<h3><a class="anchor" id="ug_rv_connect"> 
     155ug_rv_connect</a></h3> 
    135156<p>The <code>simulator</code> scenario connects the DataSource to second basic class of BDM, bdm:logger. The logger is a class that take care of storing results -- in this case, results of simulation. The connection between these blocks is done automatically. The logger stores results of simulations under the names specified in drv. Readers familiar with Simulink environment may look at the RV as being unique identifiers of inputs and outputs of simulation blocks. The inputs are connected automatically with the outputs with matching RV. This view is however, very incomplete, RV have more roles than this.</p> 
    136157<h2><a class="anchor" id="loggers"> 
     
    145166<p>These abstarct operations can be specialized in many ways. For example, storing all results in memory and writing them to disc when finished (<a class="el" href="classbdm_1_1memlog.html">bdm::memlog</a>), storing data in a matlab structure (<a class="el" href="classbdm_1_1mexlog.html" title="Logger storing results into an mxArray.">bdm::mexlog</a>), writing them out in ascii (<a class="el" href="classbdm_1_1stdlog.html" title="Simple logger used for debugging All data records are written out to std from where...">bdm::stdlog</a>) or more sophisticated buffered output to harddrive (<a class="el" href="classbdm_1_1dirfilelog.html" title="Logging into dirfile with buffer in memory.">bdm::dirfilelog</a>).</p> 
    146167<p>Since all experiments are performed in matlab, the default mexlog class will be used. However, the way how the results are to be stored can be configured using configuration structure filled by fields from <code>from_setting</code> of the chosen logger, and passing it as third argument to <code>simulator</code>.</p> 
    147 <h2><a class="anchor" id="datasource"> 
     168<h2><a class="anchor" id="ug_datasource"> 
    148169Class inheritance and DataSources</a></h2> 
    149170<p>As mentioned above, the scenario <code>simulator</code> is written to accept any datasource (i.e. any offspring of <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>). For full list of offsprings, click see Classes &gt; Class Hierarchy.</p> 
     
    162183<li><a class="el" href="classbdm_1_1stateDS.html">bdm::stateDS</a></li> 
    163184</ul> 
    164 <p>The MemDS has already been introduced in the example in <a class="el" href="user_guide.html#memds">DataSource of pre-recorded data -- MemDS</a>. However, any of the classes listed above can be used to replace it in the example. This will be demonstrated on the <code>EpdfDS</code> class.</p> 
     185<p>The MemDS has already been introduced in the example in memds. However, any of the classes listed above can be used to replace it in the example. This will be demonstrated on the <code>EpdfDS</code> class.</p> 
    165186<p>Brief decription of the class states that EpdfDS "Simulate data from a static pdf (epdf)". The static pdf means unconditional pdf in the sense that the random variable is conditioned by numerical values only. In mathematical notation it could be both <img class="formulaInl" alt="$ f(a) $" src="form_144.png"/> and <img class="formulaInl" alt="$ f(x_t |d_1 \ldots d_t)$" src="form_145.png"/>. The latter case is true only when all <img class="formulaInl" alt="$ d $" src="form_146.png"/> denotes observed values.</p> 
    166187<p>For example, we wish to simulate realizations of a Uniform pdf on interval &lt;-1,1&gt;. This is achieved by plugging an object representing uniform pdf into general simulator of independent random samples, EpdfDS. Uniform density is implemented as class <a class="el" href="classbdm_1_1euni.html" title="Uniform distributed density on a rectangular support.">bdm::euni</a>. An instance of <code>euni</code> can be again created method <code>from_setting</code>, in this case <a class="el" href="classbdm_1_1euni.html#a77f5fef1f006fe056066da23b9e5f042">bdm::euni.from_setting()</a>. Using documentation we define it with the following code: </p> 
     
    182203</pre></div><p>The result is as expected in field <code>M.a</code> the name of which corresponds to name of <code>U.rv</code> .</p> 
    183204<p>If the task was only to generate random realizations, this would indeed be a very clumsy way of doing it. However, the power of the proposed approach will be revelead in more demanding examples, one of which follows next.</p> 
    184 <h2><a class="anchor" id="arx"> 
     205<h2><a class="anchor" id="ug_arx_sim"> 
    185206Simulating autoregressive model</a></h2> 
    186207<p>Consider the following autoregressive model: </p> 
     
    232253</ul> 
    233254<p>The code above can be immediatelly run, usin the same execution sequence of <code>estimator</code> as above.</p> 
    234 <h3><a class="anchor" id="ini"> 
     255<h3><a class="anchor" id="ug_ini"> 
    235256Initializing simulation</a></h3> 
    236257<p>When zeros are not appropriate initial conditions, the correct conditions can be set using additional commands (see <a class="el" href="classbdm_1_1MpdfDS.html#a39ef55fb36da354c93c544129e03f558">bdm::MpdfDS.from_setting()</a> ): </p> 
     
    238259DS.init_values = [0.1, 0.2, 0.3]; 
    239260</pre></div><p>The values of <code>init_values</code> will be copied to places in history identified by corresponding values of <code>init_rv</code>. Initial data is not checked for completeness, i.e. values of random variables missing from <code>init_rv</code> (in this case all occurences of <img class="formulaInl" alt="$ u $" src="form_152.png"/>) are still initialized to 0.</p> 
    240 <p></p> 
    241 <p>BDM 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:</p> 
    242 <ul> 
    243 <li><b> Basic users </b> who run prepared scripts with different parameterizations and analyze their results,</li> 
    244 <li><b> Advanced users </b> who are able to understand the logic of BDM and extend its functionality to new applications.</li> 
    245 </ul> 
    246 <p>The primary design aim of BDM was to ease development of complex algorithms, hence the target user is the advanced one. However, running experiments is the first task to learn for both types of users.</p> 
    247 <h2><a class="anchor" id="param"> 
    248 Experiment is fully parameterized before execution</a></h2> 
    249 <p>Experiments 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.</p> 
    250 <p>The 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). This approach was designed especially for time consuming experiments and Monte-Carlo studies for which it suits the most.</p> 
    251 <p>For 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.</p> 
    252 <p>Semi-interactive experiments can be designed by sequential run of different algorithms. This topic will be covered in advanced documentation.</p> 
    253 <h2><a class="anchor" id="config"> 
    254 Configuration of an experiment</a></h2> 
    255 <p>Configuration file (or config structure) is organized as a tree of information. High levels represent bigger structures, leafs of the structures are basic data elements such as strings, numbers or vectors.</p> 
    256 <p>Specific treatment was developed for objects. Since BDM is designed as object oriented library, the configuration was designed to honor the rule of inheritance. That is, offspring of a class can be used in place of its predecessor. Hence, objects (instances of classes) are configured by a structure with compulsory field <code>class</code>. This is a string variable corresponding to the name of the class to be used.</p> 
    257 <p>Consider the following example: </p> 
    258 <div class="fragment"><pre class="fragment">DS = {<span class="keyword">class</span>=<span class="stringliteral">&quot;MemDS&quot;</span>; 
    259    data = [1, 2, 3, 4, 5, 6, 7]; 
    260 } 
    261 </pre></div><p> or written equivalently in Matlab as </p> 
    262 <div class="fragment"><pre class="fragment">DS.class=<span class="stringliteral">&apos;MemDS&apos;</span>; 
    263 DS.Data =[1 2 3 4 5 6]; 
    264 </pre></div><p>The code above is the minimum necessary information to run a pre-made algorithm implemented as executable <code>estimator</code> or Matlab mex file <code>estimator</code>. The expected result for Matlab is: </p> 
    265 <div class="fragment"><pre class="fragment">&gt;&gt; M=estimator(DS,{}) 
    266  
    267 M =  
    268  
    269     ch0: [6x1 <span class="keywordtype">double</span>] 
    270 </pre></div><p>The structure <code>M</code> has one field called <code>ch0</code> to which the data from <code>DS.Data</code> were copied. This was configured to be the default behavior which can be easily changed by adding more information to the configuration structure.</p> 
    271 <p>First, we will have a look at all options of MemDS.</p> 
    272 <h2><a class="anchor" id="memds"> 
    273 DataSource of pre-recorded data -- MemDS</a></h2> 
    274 <p>As a first step, the estimator algorithm has created an object of class MemDS and called its method <a class="el" href="classbdm_1_1MemDS.html#afaebfe6d7a2a43421be05d8cf7d7ae45">bdm::MemDS::from_setting()</a>. This is a universal method called when creating an instance of class from configuration. Object that does not implement this method can not be created automatically from configuration.</p> 
    275 <p>The documentation contains the full structure which can be loaded. e.g.: </p> 
    276 <div class="fragment"><pre class="fragment">{ <span class="keyword">class </span>= &apos;MemDS&apos;; 
    277         Data = (...);            <span class="comment">// Data matrix or data vector</span> 
    278         --- optional --- 
    279         drv = {<span class="keyword">class</span>=<span class="stringliteral">&apos;RV&apos;</span>; ...} <span class="comment">// Identification how rows of the matrix Data will be known to others</span> 
    280         time = 0;               <span class="comment">// Index of the first column to user_info,</span> 
    281         rowid = [1,2,3...];     <span class="comment">// ids of rows to be used</span> 
    282 } 
    283 </pre></div><p> for MemDS. The compulsory fields are listed at the beginning; the optional fields are separated by string "--- optional ---".</p> 
    284 <p>For the example given above, the missing fields were filled as follows: </p> 
    285 <div class="fragment"><pre class="fragment">  drv  = {<span class="keyword">class</span>=<span class="stringliteral">&quot;RV&quot;</span>; names=<span class="stringliteral">&quot;{ch0 }&quot;</span>; sizes=[1];}; 
    286   time = 0; 
    287   rowid = [1]; 
    288 </pre></div><p> Meaning that the data will be read from the first column (time=0), all rows of data are to be read (rowid=[1]), and this row will be called "ch0".</p> 
    289 <dl class="note"><dt><b>Note:</b></dt><dd><b>Mixtools reference</b> This object replaces global variables DATA and TIME. In BDM, data can be read and written to a range of <code>datasources</code>, objects derived from <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>.</dd></dl> 
    290 <h2><a class="anchor" id="rvs"> 
    291 What is RV and how to use it</a></h2> 
    292 <p>RV stands for <code>random</code> <code>variable</code> which is a description of random variable or its realization. This object playes role of identifier of elements of vectors of data (in datasources), expected inputs to functions (in pdfs), or required results (operations conditioning).</p> 
    293 <dl class="note"><dt><b>Note:</b></dt><dd><b>Mixtools reference </b> RV is generalization of "structures" <code>str</code> in Mixtools. It replaces channel numbers by string names, and adds extra field size for each record.</dd></dl> 
    294 <p>Mathematical interpretation of RV is straightforward. Consider pdf <img class="formulaInl" alt="$ f(a)$" src="form_142.png"/>, then <img class="formulaInl" alt="$ a $" src="form_143.png"/> is the part represented by RV. Explicit naming of random variables may seem unnecessary for many operations with pdf, e.g. for generation of a uniform sample from &lt;0,1&gt; it is not necessary to specify any random variable. For this reason, RV are often optional information to specify. However, the considered algorithm <code>estimator</code> is build in a way that requires RV to be given.</p> 
    295 <p>The <code>estimator</code> use-case expects to join the data source with an array of estimators, each of which declaring its input vector of data. The connection will be made automatically using the mechanism of datalinks (<a class="el" href="classbdm_1_1datalink.html" title="DataLink is a connection between two data vectors Up and Down.">bdm::datalink</a>). Readers familiar with Simulink environment may look at the RV as being unique identifiers of inputs and outputs of simulation blocks. The inputs are connected automatically with the outputs with matching RV. This view is however, very incomplete, RV are much more powerful than this.</p> 
    296 <h2><a class="anchor" id="datasource"> 
    297 Class inheritance and DataSources</a></h2> 
    298 <p>As mentioned above, the algorithm <code>estimator</code> is written to accept any datasource (i.e. any offspring of <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a>). For full list of offsprings, click Classes &gt; Class Hierarchy.</p> 
    299 <p>At the time of writing this tutorial, available datasources are <a class="el" href="classbdm_1_1DS.html" title="Abstract class for discrete-time sources of data.">bdm::DS</a></p> 
    300 <ul> 
    301 <li><a class="el" href="classbdm_1_1EpdfDS.html" title="Simulate data from a static pdf (epdf).">bdm::EpdfDS</a></li> 
    302 <li><a class="el" href="classbdm_1_1MemDS.html" title="Memory storage of off-line data column-wise.">bdm::MemDS</a><ul> 
    303 <li><a class="el" href="classbdm_1_1FileDS.html">bdm::FileDS</a><ul> 
    304 <li><a class="el" href="classbdm_1_1CsvFileDS.html" title="CSV file data storage The constructor creates Data matrix from the records in a CSV...">bdm::CsvFileDS</a></li> 
    305 <li><a class="el" href="classbdm_1_1ITppFileDS.html" title="Read Data Matrix from an IT file.">bdm::ITppFileDS</a></li> 
    306 </ul> 
    307 </li> 
    308 </ul> 
    309 </li> 
    310 <li><a class="el" href="classbdm_1_1MpdfDS.html" title="Simulate data from conditional density Still having only one density but allowing...">bdm::MpdfDS</a></li> 
    311 <li><a class="el" href="classbdm_1_1stateDS.html">bdm::stateDS</a></li> 
    312 </ul> 
    313 <p>The MemDS has already been introduced in the example in <a class="el" href="user_guide.html#memds">DataSource of pre-recorded data -- MemDS</a>. However, any of the classes listed above can be used to replace it in the example. This will be demonstrated on the <code>EpdfDS</code> class.</p> 
    314 <p>Brief decription of the class states that EpdfDS "Simulate data from a static pdf (epdf)". The static pdf means unconditional pdf in the sense that the random variable is conditioned by numerical values only. In mathematical notation it could be both <img class="formulaInl" alt="$ f(a) $" src="form_144.png"/> and <img class="formulaInl" alt="$ f(x_t |d_1 \ldots d_t)$" src="form_145.png"/>. The latter case is true only when all <img class="formulaInl" alt="$ d $" src="form_146.png"/> denotes observed values.</p> 
    315 <p>For example, we wish to simulate realizations of a Uniform density on interval &lt;-1,1&gt;. Uniform density is represented by class <a class="el" href="classbdm_1_1euni.html" title="Uniform distributed density on a rectangular support.">bdm::euni</a>. From <a class="el" href="classbdm_1_1euni.html#a77f5fef1f006fe056066da23b9e5f042">bdm::euni.from_setting()</a> we can find that the code is: </p> 
    316 <div class="fragment"><pre class="fragment">U={<span class="keyword">class</span>=<span class="stringliteral">&quot;euni&quot;</span>; high=1.0; low = -1.0;} 
    317 </pre></div><p> for configuration file, and </p> 
    318 <div class="fragment"><pre class="fragment">U.class=<span class="stringliteral">&apos;euni&apos;</span>; 
    319 U.high = 1.0; 
    320 U.low  = -1.0; 
    321 U.rv.class = <span class="stringliteral">&apos;RV&apos;</span>; 
    322 U.rv.names = {<span class="charliteral">&apos;a&apos;</span>}; 
    323 </pre></div><p> for Matlab.</p> 
    324 <p>The datasource itself, can be then configured via </p> 
    325 <div class="fragment"><pre class="fragment">DS = {<span class="keyword">class</span>=<span class="stringliteral">&apos;EpdfDS&apos;</span>; epdf=@U;}; 
    326 </pre></div><p> in config file, or </p> 
    327 <div class="fragment"><pre class="fragment">DS.class = <span class="stringliteral">&apos;EpdfDS&apos;</span>; 
    328 DS.epdf  = U; 
    329 </pre></div><p> in Matlab.</p> 
    330 <p>Contrary to the previous example, we need to tell to algorithm <code>estimator</code> how many samples from the data source we need. This is configured by variable <code>experiment.ndat</code>. The configuration has to be finalized by: </p> 
    331 <div class="fragment"><pre class="fragment">experiment.ndat = 10; 
    332 M=estimator(DS,{},experiment); 
    333 </pre></div><p>The result is as expected in field <code>M.a</code> the name of which corresponds to name of <code>U.rv</code> .</p> 
    334 <p>If the task was only to generate random realizations, this would indeed be a very clumsy way of doing it. However, the power of the proposed approach will be revelead in more demanding examples, one of which follows next.</p> 
    335 <h2><a class="anchor" id="arx"> 
    336 Simulating autoregressive model</a></h2> 
    337 <p>Consider the following autoregressive model: </p> 
    338 <p class="formulaDsp"> 
    339 <img class="formulaDsp" alt="\[ y_t \sim \mathcal{N}( a y_{t-3} + b u_{t-1}, r) \]" src="form_147.png"/> 
    340 </p> 
    341 <p> where <img class="formulaInl" alt="$ a,b $" src="form_148.png"/> are known constants, and <img class="formulaInl" alt="$ r $" src="form_149.png"/> is known variance.</p> 
    342 <p>Direct application of <code>EpdfDS</code> is not possible, since the pdf above is conditioned on values of <img class="formulaInl" alt="$ y_{t-3}$" src="form_150.png"/> and <img class="formulaInl" alt="$ u_{t-1}$" src="form_151.png"/>. We need to handle two issues:</p> 
    343 <ol type="1"> 
    344 <li>extra unsimulated variable <img class="formulaInl" alt="$ u $" src="form_152.png"/>,</li> 
    345 <li>time delayes of the values.</li> 
    346 </ol> 
    347 <p>The first issue can be handled in two ways. First, <img class="formulaInl" alt="$ u $" src="form_152.png"/> can be considered as input and as such it could be externally given to the datasource. This solution is used in algorithm use-case <code>closedloop</code>. However, for the <code>estimator</code> scenario we will apply the second option, that is we complement <img class="formulaInl" alt="$ f(y_{t}|y_{t-3},u_{t-1})$" src="form_153.png"/> by extra pdf:</p> 
    348 <p class="formulaDsp"> 
    349 <img class="formulaDsp" alt="\[ u_t \sim \mathcal{N}(0, r_u) \]" src="form_154.png"/> 
    350 </p> 
    351 <p> Thus, the joint density is now:</p> 
    352 <p class="formulaDsp"> 
    353 <img class="formulaDsp" alt="\[ f(y_{t},u_{t}|y_{t-3},u_{t-1}) = f(y_{t}|y_{t-3},u_{t-1})f(u_{t}) \]" src="form_155.png"/> 
    354 </p> 
    355 <p> and we have no need for input since the datasource have all necessary information inside. All that is required is to store them and copy their values to appropriate places.</p> 
    356 <p>That is done in automatic way using dedicated class <a class="el" href="classbdm_1_1datalink__buffered.html" title="Datalink that buffers delayed values - do not forget to call step().">bdm::datalink_buffered</a>. The only issue a user may need to take care about is the missing initial conditions for simulation. By default these are set to zeros. Using the default values, the full configuration of this system is: </p> 
    357 <div class="fragment"><pre class="fragment">y = RV({<span class="charliteral">&apos;y&apos;</span>}); 
    358 u = RV({<span class="charliteral">&apos;u&apos;</span>}); 
    359  
    360 fy.class = <span class="stringliteral">&apos;mlnorm&lt;ldmat&gt;&apos;</span>; 
    361 fy.rv    = y; 
    362 fy.rvc   = RV({<span class="charliteral">&apos;y&apos;</span>,<span class="charliteral">&apos;u&apos;</span>}, [1 1], [-3, -1]); 
    363 fy.A     = [0.5, -0.9]; 
    364 fy.const = 0; 
    365 fy.R     = 0.1; 
    366  
    367  
    368 fu.class = <span class="stringliteral">&apos;enorm&lt;ldmat&gt;&apos;</span>; 
    369 fu.rv    = u; 
    370 fu.mu    = 0; 
    371 fu.R     = 0.2; 
    372  
    373 DS.class = <span class="stringliteral">&apos;MpdfDS&apos;</span>; 
    374 DS.mpdf.class  = <span class="stringliteral">&apos;mprod&apos;</span>; 
    375 DS.mpdf.mpdfs  = {fy, epdf2mpdf(fu)}; 
    376 </pre></div><p>Explanation of this example will require few remarks:</p> 
    377 <ul> 
    378 <li>class of the <code>fy</code> object is 'mlnorm&lt;ldmat&gt;' which is Normal pdf with mean value given by linear function, and covariance matrix stored in LD decomposition, see <a class="el" href="classbdm_1_1mlnorm.html" title="Normal distributed linear function with linear function of mean value;.">bdm::mlnorm</a> for details.</li> 
    379 <li>naming convention 'mlnorm&lt;ldmat&gt;' relates to the concept of templates in C++. For those unfamiliar with this concept, it is basicaly a way how to share code for different flavours of the same object. Note that mlnorm exist in three versions: mlnorm&lt;ldmat&gt;, <a class="el" href="classbdm_1_1mlnorm.html">mlnorm&lt;chmat&gt;</a>, mlnorm&lt;fsqmat&gt;. Those classes act identically the only difference is that the internal data are stored either in LD decomposition, choleski decomposition or full matrices, respectively.</li> 
    380 <li>the same concept is used for enorm, where <a class="el" href="classbdm_1_1enorm.html">enorm&lt;chmat&gt;</a> and <a class="el" href="classbdm_1_1enorm.html">enorm&lt;fsqmat&gt;</a> are also possible. In this particular use, these objects are equivalent. In specific situation, e.g. Kalman filter implemented on Choleski decomposition (<a class="el" href="classbdm_1_1KalmanCh.html" title="Kalman filter in square root form.">bdm::KalmanCh</a>), only <a class="el" href="classbdm_1_1enorm.html">enorm&lt;chmat&gt;</a> is approprate.</li> 
    381 <li>class 'mprod' represents the chain rule of probability. Attribute <code>mpdfs</code> of its configuration structure is a list of conditional densities. Conditional density <img class="formulaInl" alt="$ f(a|b)$" src="form_156.png"/> is represented by class <code>mpdf</code> and its offsprings. Class <code>RV</code> is used to describe both variables before conditioning (field <code>rv</code> ) and after conditioning sign (field <code>rvc</code>).</li> 
    382 <li>due to simplicity of implementation, mprod accept only conditional densities in the field <code>mpdfs</code>. Hence, the pdf <img class="formulaInl" alt="$ f(u_t)$" src="form_157.png"/> must be converted to conditional density with empty conditioning, <img class="formulaInl" alt="$ f(u_t| \{\})$" src="form_158.png"/>. This is achieved by calling function epdf2mpdf which is only a trivial wrapper creating class <a class="el" href="classbdm_1_1mepdf.html" title="Unconditional mpdf, allows using epdf in the role of mpdf.">bdm::mepdf</a>.</li> 
    383 </ul> 
    384 <p>The code above can be immediatelly run, usin the same execution sequence of <code>estimator</code> as above.</p> 
    385 <h3><a class="anchor" id="ini"> 
    386 Initializing simulation</a></h3> 
    387 <p>When zeros are not appropriate initial conditions, the correct conditions can be set using additional commands: </p> 
    388 <div class="fragment"><pre class="fragment">DS.init_rv = RV({<span class="charliteral">&apos;y&apos;</span>,<span class="charliteral">&apos;y&apos;</span>,<span class="charliteral">&apos;y&apos;</span>}, [1,1,1], [-1,-2,-3]); 
    389 DS.init_values = [0.1, 0.2, 0.3]; 
    390 </pre></div><p>The values of <code>init_values</code> will be copied to places in history identified by corresponding values of <code>init_rv</code>. Initial data is not checked for completeness, i.e. values of random variables missing from <code>init_rv</code> (in this case all occurences of <img class="formulaInl" alt="$ u $" src="form_152.png"/>) are still initialized to 0.</p> 
    391 <h2><a class="anchor" id="conc"> 
    392 What was demonstrated in this tutorial</a></h2> 
    393 <p>The purpose of this page was to introduce software image of basic elements of decision making as implemented in BDM.</p> 
    394 <ul> 
    395 <li>random values as identification mechanism (<a class="el" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">bdm::RV</a>)</li> 
    396 <li>unconditional pdfs (<a class="el" href="classbdm_1_1epdf.html" title="Probability density function with numerical statistics, e.g. posterior density.">bdm::epdf</a>),</li> 
    397 <li>conditional pdfs (<a class="el" href="classbdm_1_1mpdf.html" title="Conditional probability density, e.g. modeling , where  is random variable, rv, and...">bdm::mpdf</a>),</li> 
    398 </ul> 
    399 <p>And the use of these in simulation of data and function of datasources. In the next tutorial, Bayesian models (<a class="el" href="classbdm_1_1BM.html" title="Bayesian Model of a system, i.e. all uncertainty is modeled by probabilities.">bdm::BM</a>) and loggers (<a class="el" href="classbdm_1_1logger.html" title="Class for storing results (and semi-results) of an experiment.">bdm::logger</a>) will be introduced. </p> 
    400 </div> 
    401 <hr size="1"/><address style="text-align: right;"><small>Generated on Wed Sep 16 22:33:33 2009 for mixpp by&nbsp; 
     261<h2><a class="anchor" id="ug_store"> 
     262Storing results of simulation</a></h2> 
     263<p>If the simulated data are to be analyzed off-line it may be advantageous to store them and use for later use. This operation is straightforward if the class of logger used in the <code>simulator</code> is compatible with some datasource class.</p> 
     264<p>For example, the output of <code>MemDS</code> can be stored as an .it file (filename is specified in configuration structure) which can be later read by <a class="el" href="classbdm_1_1ITppFileDS.html" title="Read Data Matrix from an IT file.">bdm::ITppFileDS</a>.</p> 
     265<p>In matlab, the output of mexlog is a structure of vectors or matrices. The results can be saved in a matlab file using: </p> 
     266<div class="fragment"><pre class="fragment">Data=[M.y; M.u]; 
     267drv = RVjoin({y,u}); 
     268save mpdfds_results Data drv 
     269</pre></div><p> Such data can be later provided e.g. by MemDS </p> 
     270<div class="fragment"><pre class="fragment">mxDS.class   = <span class="stringliteral">&apos;MemDS&apos;</span>; 
     271mxDS.Data    = <span class="stringliteral">&apos;Data&apos;</span>; 
     272mxDS.drv     = drv; 
     273</pre></div> </div> 
     274<hr size="1"/><address style="text-align: right;"><small>Generated on Fri Sep 18 00:12:03 2009 for mixpp by&nbsp; 
    402275<a href="http://www.doxygen.org/index.html"> 
    403276<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>