Show
Ignore:
Timestamp:
01/22/08 15:13:55 (17 years ago)
Author:
smidl
Message:

nefunkcni!!!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/html/libBM_8h-source.html

    r5 r7  
    2222<a name="l00019"></a>00019 <span class="keyword">using namespace </span>itpp; 
    2323<a name="l00020"></a>00020  
    24 <a name="l00026"></a><a class="code" href="classRV.html">00026</a> <span class="keyword">class </span><a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> 
    25 <a name="l00027"></a>00027 { 
    26 <a name="l00028"></a>00028                 <span class="keywordtype">int</span> len; 
    27 <a name="l00029"></a>00029                 ivec ids; 
    28 <a name="l00030"></a>00030                 ivec sizes; 
    29 <a name="l00031"></a>00031                 ivec times; 
    30 <a name="l00032"></a>00032                 ivec obs; 
    31 <a name="l00033"></a>00033                 Array&lt;std::string&gt; names; 
    32 <a name="l00034"></a>00034  
    33 <a name="l00035"></a>00035         <span class="keyword">public</span>: 
    34 <a name="l00037"></a>00037                 <a class="code" href="classRV.html#e46882dec2c30b12be282d34b03417b2" title="Full constructor which is called by the others.">RV</a> ( ivec in_ids, Array&lt;std::string&gt; in_names, ivec in_sizes, ivec in_times, ivec in_obs ); 
    35 <a name="l00039"></a>00039                 <a class="code" href="classRV.html#e46882dec2c30b12be282d34b03417b2" title="Full constructor which is called by the others.">RV</a> ( ivec ids ); 
    36 <a name="l00040"></a>00040                 <span class="keyword">friend</span> std::ostream &amp;operator&lt;&lt; ( std::ostream &amp;os, <span class="keyword">const</span> <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> &amp;rv ); 
    37 <a name="l00041"></a>00041 }; 
    38 <a name="l00042"></a>00042  
     24<a name="l00026"></a><a class="code" href="classRV.html">00026</a> <span class="keyword">class </span><a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> { 
     25<a name="l00027"></a>00027         <span class="keywordtype">int</span> len; 
     26<a name="l00028"></a>00028         ivec ids; 
     27<a name="l00029"></a>00029         ivec sizes; 
     28<a name="l00030"></a>00030         ivec times; 
     29<a name="l00031"></a>00031         ivec obs; 
     30<a name="l00032"></a>00032         Array&lt;std::string&gt; names; 
     31<a name="l00033"></a>00033  
     32<a name="l00034"></a>00034 <span class="keyword">private</span>: 
     33<a name="l00035"></a>00035         <span class="keywordtype">void</span> init ( ivec in_ids, Array&lt;std::string&gt; in_names, ivec in_sizes, ivec in_times, ivec in_obs ); 
     34<a name="l00036"></a>00036 <span class="keyword">public</span>: 
     35<a name="l00038"></a>00038         <a class="code" href="classRV.html#e46882dec2c30b12be282d34b03417b2" title="Full constructor which is called by the others.">RV</a> ( ivec in_ids, Array&lt;std::string&gt; in_names, ivec in_sizes, ivec in_times, ivec in_obs ); 
     36<a name="l00040"></a>00040         <a class="code" href="classRV.html#e46882dec2c30b12be282d34b03417b2" title="Full constructor which is called by the others.">RV</a> ( ivec ids ); 
     37<a name="l00042"></a>00042         <span class="keyword">friend</span> std::ostream &amp;<a class="code" href="classRV.html#cad6f15535d10437f6690cb4492176a8" title="Printing output e.g. for debugging.">operator&lt;&lt; </a>( std::ostream &amp;os, <span class="keyword">const</span> <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> &amp;rv ); 
    3938<a name="l00043"></a>00043  
    40 <a name="l00044"></a>00044  
    41 <a name="l00045"></a>00045  
    42 <a name="l00047"></a><a class="code" href="classfnc.html">00047</a> <span class="keyword">class </span><a class="code" href="classfnc.html" title="Class representing function of variables.">fnc</a> 
    43 <a name="l00048"></a>00048 { 
    44 <a name="l00049"></a>00049                 <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
    45 <a name="l00050"></a>00050 }; 
    46 <a name="l00051"></a>00051  
    47 <a name="l00053"></a><a class="code" href="classBM.html">00053</a> <span class="keyword">class </span><a class="code" href="classBM.html" title="Bayesian Model of the world, i.e. all uncertainty is modeled by probabilities.">BM</a> 
    48 <a name="l00054"></a>00054 { 
    49 <a name="l00055"></a>00055         <span class="keyword">public</span>: 
    50 <a name="l00057"></a>00057                 <span class="keywordtype">void</span> <a class="code" href="classBM.html#c1b46da4abb4302ed57858558c90d641" title="Incremental Bayes rule.">bayes</a> ( vec dt ); 
    51 <a name="l00059"></a>00059                 <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classBM.html#c1b46da4abb4302ed57858558c90d641" title="Incremental Bayes rule.">bayes</a> ( mat Dt ); 
    52 <a name="l00060"></a>00060 }; 
    53 <a name="l00061"></a>00061  
    54 <a name="l00063"></a><a class="code" href="classepdf.html">00063</a> <span class="keyword">class </span><a class="code" href="classepdf.html" title="Probability density function with numerical statistics, e.g. posterior density.">epdf</a> 
    55 <a name="l00064"></a>00064 { 
    56 <a name="l00065"></a>00065                 <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
    57 <a name="l00066"></a>00066         <span class="keyword">public</span>: 
    58 <a name="l00068"></a>00068                 <span class="keyword">virtual</span> vec <a class="code" href="classepdf.html#545555f9d561555603911f7d3989611f" title="Returns the required moment of the epdf.">moment</a> ( <span class="keyword">const</span> <span class="keywordtype">int</span> order = 1 ); 
    59 <a name="l00069"></a>00069 }; 
    60 <a name="l00070"></a>00070  
    61 <a name="l00072"></a><a class="code" href="classmpdf.html">00072</a> <span class="keyword">class </span><a class="code" href="classmpdf.html" title="Conditional probability density, e.g. modeling some dependencies.">mpdf</a> 
    62 <a name="l00073"></a>00073 { 
    63 <a name="l00075"></a>00075                 <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
    64 <a name="l00077"></a>00077                 <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rvc; 
    65 <a name="l00078"></a>00078         <span class="keyword">public</span>: 
    66 <a name="l00079"></a>00079  
    67 <a name="l00081"></a>00081                 <span class="keyword">virtual</span> <a class="code" href="classfnc.html" title="Class representing function of variables.">fnc</a> <a class="code" href="classmpdf.html#0863640c439869e8fbbbeb2bd8ea1fc0" title="Returns the required moment of the epdf.">moment</a> ( <span class="keyword">const</span> <span class="keywordtype">int</span> order = 1 ); 
     39<a name="l00045"></a>00045         ivec <a class="code" href="classRV.html#45b869bced40dc3fa0df584aaf8228c0" title="Find indexes of another rv in self.">rvfind</a>(<a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv2); 
     40<a name="l00047"></a>00047         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> <a class="code" href="classRV.html#f47ab0015ebac822da3b2e00f42a8fc6" title="Add (concat) another variable to the current one.">rvadd</a>(<a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv2); 
     41<a name="l00049"></a>00049         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> <a class="code" href="classRV.html#269023ac4d41b21c4e1f7f17db1603b9" title="Subtract another variable from the current one.">rvsubt</a>(<a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv2); 
     42<a name="l00051"></a>00051         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> <a class="code" href="classRV.html#70a53f2bc37929bae899b0b24cda9d8e" title="Select only variables at indeces ind.">rvsubselect</a>(ivec ind); 
     43<a name="l00053"></a>00053         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> <a class="code" href="classRV.html#28bbcb8873bafdac317bafb7b481cc45" title="Select only variables at indeces ind.">operator()</a>(ivec ind); 
     44<a name="l00054"></a>00054 }; 
     45<a name="l00055"></a>00055  
     46<a name="l00056"></a>00056  
     47<a name="l00057"></a>00057  
     48<a name="l00058"></a>00058  
     49<a name="l00060"></a><a class="code" href="classfnc.html">00060</a> <span class="keyword">class </span><a class="code" href="classfnc.html" title="Class representing function of variables.">fnc</a> { 
     50<a name="l00061"></a>00061         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
     51<a name="l00062"></a>00062 }; 
     52<a name="l00063"></a>00063  
     53<a name="l00065"></a><a class="code" href="classBM.html">00065</a> <span class="keyword">class </span><a class="code" href="classBM.html" title="Bayesian Model of the world, i.e. all uncertainty is modeled by probabilities.">BM</a> { 
     54<a name="l00066"></a>00066 <span class="keyword">public</span>: 
     55<a name="l00071"></a>00071         <span class="keyword">virtual</span> <span class="keywordtype">void</span> <a class="code" href="classBM.html#c52edf4ad6e1dff9bf64b9e1e0cfb1f0" title="Incremental Bayes rule.">bayes</a> ( <span class="keyword">const</span> vec &amp;dt, <span class="keywordtype">bool</span> evall=<span class="keyword">true</span> ) = 0; 
     56<a name="l00073"></a>00073         <span class="keywordtype">void</span> <a class="code" href="classBM.html#c52edf4ad6e1dff9bf64b9e1e0cfb1f0" title="Incremental Bayes rule.">bayes</a> ( mat Dt ); 
     57<a name="l00074"></a>00074 }; 
     58<a name="l00075"></a>00075  
     59<a name="l00077"></a><a class="code" href="classepdf.html">00077</a> <span class="keyword">class </span><a class="code" href="classepdf.html" title="Probability density function with numerical statistics, e.g. posterior density.">epdf</a> { 
     60<a name="l00078"></a>00078         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
     61<a name="l00079"></a>00079 <span class="keyword">public</span>: 
     62<a name="l00081"></a>00081         <span class="keyword">virtual</span> vec <a class="code" href="classepdf.html#545555f9d561555603911f7d3989611f" title="Returns the required moment of the epdf.">moment</a> ( <span class="keyword">const</span> <span class="keywordtype">int</span> order = 1 ); 
    6863<a name="l00082"></a>00082 }; 
    6964<a name="l00083"></a>00083  
    70 <a name="l00084"></a>00084 <span class="preprocessor">#endif // BM_H</span> 
    71 </pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Fri Jan 18 09:57:40 2008 for mixpp by&nbsp; 
     65<a name="l00085"></a><a class="code" href="classmpdf.html">00085</a> <span class="keyword">class </span><a class="code" href="classmpdf.html" title="Conditional probability density, e.g. modeling some dependencies.">mpdf</a> { 
     66<a name="l00087"></a>00087         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rv; 
     67<a name="l00089"></a>00089         <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> rvc; 
     68<a name="l00090"></a>00090 <span class="keyword">public</span>: 
     69<a name="l00091"></a>00091  
     70<a name="l00093"></a>00093         <span class="keyword">virtual</span> <a class="code" href="classfnc.html" title="Class representing function of variables.">fnc</a> <a class="code" href="classmpdf.html#0863640c439869e8fbbbeb2bd8ea1fc0" title="Returns the required moment of the epdf.">moment</a> ( <span class="keyword">const</span> <span class="keywordtype">int</span> order = 1 ); 
     71<a name="l00094"></a>00094 }; 
     72<a name="l00095"></a>00095  
     73<a name="l00096"></a>00096 <span class="preprocessor">#endif // BM_H</span> 
     74</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Sun Jan 20 12:47:33 2008 for mixpp by&nbsp; 
    7275<a href="http://www.doxygen.org/index.html"> 
    7376<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address>