Show
Ignore:
Timestamp:
02/16/09 10:03:13 (16 years ago)
Author:
smidl
Message:

Next major revision

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/html/classUIArxDS.html

    r270 r271  
    66</head><body> 
    77<!-- Generated by Doxygen 1.5.6 --> 
     8<script type="text/javascript"> 
     9<!-- 
     10function changeDisplayState (e){ 
     11  var num=this.id.replace(/[^[0-9]/g,''); 
     12  var button=this.firstChild; 
     13  var sectionDiv=document.getElementById('dynsection'+num); 
     14  if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ 
     15    sectionDiv.style.display='block'; 
     16    button.src='open.gif'; 
     17  }else{ 
     18    sectionDiv.style.display='none'; 
     19    button.src='closed.gif'; 
     20  } 
     21} 
     22function initDynSections(){ 
     23  var divs=document.getElementsByTagName('div'); 
     24  var sectionCounter=1; 
     25  for(var i=0;i<divs.length-1;i++){ 
     26    if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ 
     27      var header=divs[i]; 
     28      var section=divs[i+1]; 
     29      var button=header.firstChild; 
     30      if (button!='IMG'){ 
     31        divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); 
     32        button=document.createElement('img'); 
     33        divs[i].insertBefore(button,divs[i].firstChild); 
     34      } 
     35      header.style.cursor='pointer'; 
     36      header.onclick=changeDisplayState; 
     37      header.id='dynheader'+sectionCounter; 
     38      button.src='closed.gif'; 
     39      section.id='dynsection'+sectionCounter; 
     40      section.style.display='none'; 
     41      section.style.marginLeft='14px'; 
     42      sectionCounter++; 
     43    } 
     44  } 
     45} 
     46window.onload = initDynSections; 
     47--> 
     48</script> 
    849<div class="navigation" id="top"> 
    950  <div class="tabs"> 
    1051    <ul> 
    11       <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> 
     52      <li><a href="main.html"><span>Main&nbsp;Page</span></a></li> 
    1253      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> 
    1354      <li><a href="modules.html"><span>Modules</span></a></li> 
    14       <li><a href="namespaces.html"><span>Namespaces</span></a></li> 
    1555      <li class="current"><a href="classes.html"><span>Classes</span></a></li> 
    1656      <li><a href="files.html"><span>Files</span></a></li> 
     
    3272Inheritance diagram for UIArxDS:</div> 
    3373<div class="dynsection"> 
    34 <p><center><img src="classUIArxDS__inherit__graph.png" border="0" usemap="#UIArxDS__inherit__map" alt="Inheritance graph"></center> 
    35 <map name="UIArxDS__inherit__map"> 
    36 <area shape="rect" href="classbdm_1_1UIbuilder.html" title="Builds computational object from a UserInfo structure." alt="" coords="5,7,120,33"></map> 
    37 <center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center></div> 
     74 
     75<p><center><img src="classUIArxDS.png" usemap="#UIArxDS_map" border="0" alt=""></center> 
     76<map name="UIArxDS_map"> 
     77<area href="classbdm_1_1UIbuilder.html" alt="bdm::UIbuilder" shape="rect" coords="0,0,91,24"> 
     78</map> 
     79</div> 
    3880 
    3981<p> 
     
    4284The ArxDS is constructed from a structure with fields: <div class="fragment"><pre class="fragment">system = { 
    4385        type = <span class="stringliteral">"ArxDS"</span>; 
    44         <span class="comment">// number of output channels</span> 
    45         ychns = 2; 
    46         <span class="comment">// number of input channels</span> 
    47         uchns = 0; 
    48         <span class="comment">// regressor ids (only those in ychns or uchns)</span> 
    49         ids = [1, 1, 1, 2]; 
    50         <span class="comment">// regressor time delays</span> 
    51         delays = [-1, -2, -3, 0]; 
     86        <span class="comment">// description of y variables</span> 
     87        y = {type=<span class="stringliteral">"rv"</span>; names=[<span class="stringliteral">"y"</span>, <span class="stringliteral">"u"</span>];}; 
     88        <span class="comment">// description of u variable</span> 
     89        u = {type=<span class="stringliteral">"rv"</span>; names=[];} 
     90        <span class="comment">// description of regressor</span> 
     91        rgr = {type=<span class="stringliteral">"rv"</span>; 
     92                names = [<span class="stringliteral">"y"</span>,<span class="stringliteral">"y"</span>,<span class="stringliteral">"y"</span>,<span class="stringliteral">"u"</span>]; 
     93                times = [-1, -2, -3, -1]; 
     94        } 
     95 
    5296        <span class="comment">// theta</span> 
    5397        theta = [0.8, -0.3, 0.4, 1.0, 
     
    58102        r = [0.1, 0.0, 
    59103             0.0, 1.0]; 
    60         <span class="comment">//options: L_theta, etc.</span> 
     104        <span class="comment">//options: L_theta = log value of theta,</span> 
    61105        opt = <span class="stringliteral">"L_theta"</span>; 
    62106}; 
    63107</pre></div><p> 
    64 <code>ychns</code> and <code>uchns</code> will be transformed into rvs of size=1.<p> 
    65108Result is ARX data source offering with full history as Drv. <table border="0" cellpadding="0" cellspacing="0"> 
    66109<tr><td></td></tr> 
     
    77120const mat&nbsp;</td><td class="memItemRight" valign="bottom"><b>getmat</b> (Setting &amp;S, int ncols) const </td></tr> 
    78121 
    79 <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="5f0c1a56ac46342d339c8e7944639b4b"></a><!-- doxytag: member="UIArxDS::getivec" ref="5f0c1a56ac46342d339c8e7944639b4b" args="(Setting &amp;S) const " --> 
    80 const vec&nbsp;</td><td class="memItemRight" valign="bottom"><b>getivec</b> (Setting &amp;S) const </td></tr> 
     122<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="950437aed29283d10346f4966011a64e"></a><!-- doxytag: member="UIArxDS::getivec" ref="950437aed29283d10346f4966011a64e" args="(Setting &amp;S) const " --> 
     123const ivec&nbsp;</td><td class="memItemRight" valign="bottom"><b>getivec</b> (Setting &amp;S) const </td></tr> 
     124 
     125<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="4ea1d97d81aba46dfe0e7fd416a4ad22"></a><!-- doxytag: member="UIArxDS::get_as" ref="4ea1d97d81aba46dfe0e7fd416a4ad22" args="(Setting &amp;S) const " --> 
     126const Array&lt; string &gt;&nbsp;</td><td class="memItemRight" valign="bottom"><b>get_as</b> (Setting &amp;S) const </td></tr> 
    81127 
    82128</table> 
     
    84130<li><a class="el" href="libDS__ui_8h-source.html">libDS_ui.h</a></ul> 
    85131</div> 
    86 <hr size="1"><address style="text-align: right;"><small>Generated on Wed Feb 11 23:34:01 2009 for mixpp by&nbsp; 
     132<hr size="1"><address style="text-align: right;"><small>Generated on Sun Feb 15 23:09:31 2009 for mixpp by&nbsp; 
    87133<a href="http://www.doxygen.org/index.html"> 
    88134<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>