1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
---|
2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> |
---|
3 | <title>mixpp: UIArxDS Class Reference</title> |
---|
4 | <link href="doxygen.css" rel="stylesheet" type="text/css"> |
---|
5 | <link href="tabs.css" rel="stylesheet" type="text/css"> |
---|
6 | </head><body> |
---|
7 | <!-- Generated by Doxygen 1.5.6 --> |
---|
8 | <script type="text/javascript"> |
---|
9 | <!-- |
---|
10 | function 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 | } |
---|
22 | function 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 | } |
---|
46 | window.onload = initDynSections; |
---|
47 | --> |
---|
48 | </script> |
---|
49 | <div class="navigation" id="top"> |
---|
50 | <div class="tabs"> |
---|
51 | <ul> |
---|
52 | <li><a href="main.html"><span>Main Page</span></a></li> |
---|
53 | <li><a href="pages.html"><span>Related Pages</span></a></li> |
---|
54 | <li><a href="modules.html"><span>Modules</span></a></li> |
---|
55 | <li class="current"><a href="classes.html"><span>Classes</span></a></li> |
---|
56 | <li><a href="files.html"><span>Files</span></a></li> |
---|
57 | </ul> |
---|
58 | </div> |
---|
59 | <div class="tabs"> |
---|
60 | <ul> |
---|
61 | <li><a href="classes.html"><span>Alphabetical List</span></a></li> |
---|
62 | <li><a href="annotated.html"><span>Class List</span></a></li> |
---|
63 | <li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li> |
---|
64 | <li><a href="functions.html"><span>Class Members</span></a></li> |
---|
65 | </ul> |
---|
66 | </div> |
---|
67 | </div> |
---|
68 | <div class="contents"> |
---|
69 | <h1>UIArxDS Class Reference</h1><!-- doxytag: class="UIArxDS" --><!-- doxytag: inherits="bdm::UIbuilder" --><code>#include <<a class="el" href="libDS__ui_8h-source.html">libDS_ui.h</a>></code> |
---|
70 | <p> |
---|
71 | <div class="dynheader"> |
---|
72 | Inheritance diagram for UIArxDS:</div> |
---|
73 | <div class="dynsection"> |
---|
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> |
---|
80 | |
---|
81 | <p> |
---|
82 | <a href="classUIArxDS-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2> |
---|
83 | UI for ArxDS using factorized description!<p> |
---|
84 | The ArxDS is constructed from a structure with fields: <div class="fragment"><pre class="fragment">system = { |
---|
85 | type = <span class="stringliteral">"ArxDS"</span>; |
---|
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 | |
---|
96 | <span class="comment">// theta</span> |
---|
97 | theta = [0.8, -0.3, 0.4, 1.0, |
---|
98 | 0.0, 0.0, 0.0, 0.0]; |
---|
99 | <span class="comment">// offset (optional)</span> |
---|
100 | offset = [0.0, 0.0]; |
---|
101 | <span class="comment">//variance</span> |
---|
102 | r = [0.1, 0.0, |
---|
103 | 0.0, 1.0]; |
---|
104 | <span class="comment">//options: L_theta = log value of theta,</span> |
---|
105 | opt = <span class="stringliteral">"L_theta"</span>; |
---|
106 | }; |
---|
107 | </pre></div><p> |
---|
108 | Result is ARX data source offering with full history as Drv. <table border="0" cellpadding="0" cellspacing="0"> |
---|
109 | <tr><td></td></tr> |
---|
110 | <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr> |
---|
111 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="f29ba9f6bb21461d3c061701b8ba366f"></a><!-- doxytag: member="UIArxDS::build" ref="f29ba9f6bb21461d3c061701b8ba366f" args="(Setting &S) const " --> |
---|
112 | <a class="el" href="classbdm_1_1bdmroot.html">bdmroot</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classUIArxDS.html#f29ba9f6bb21461d3c061701b8ba366f">build</a> (Setting &S) const </td></tr> |
---|
113 | |
---|
114 | <tr><td class="mdescLeft"> </td><td class="mdescRight">Function building the computational object. <br></td></tr> |
---|
115 | <tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr> |
---|
116 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="3c514c2eb6fc6a347f15c270a32ddebd"></a><!-- doxytag: member="UIArxDS::getvec" ref="3c514c2eb6fc6a347f15c270a32ddebd" args="(Setting &S) const " --> |
---|
117 | const vec </td><td class="memItemRight" valign="bottom"><b>getvec</b> (Setting &S) const </td></tr> |
---|
118 | |
---|
119 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="1e78cce143622e3a0ba66af4768bc3e8"></a><!-- doxytag: member="UIArxDS::getmat" ref="1e78cce143622e3a0ba66af4768bc3e8" args="(Setting &S, int ncols) const " --> |
---|
120 | const mat </td><td class="memItemRight" valign="bottom"><b>getmat</b> (Setting &S, int ncols) const </td></tr> |
---|
121 | |
---|
122 | <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="950437aed29283d10346f4966011a64e"></a><!-- doxytag: member="UIArxDS::getivec" ref="950437aed29283d10346f4966011a64e" args="(Setting &S) const " --> |
---|
123 | const ivec </td><td class="memItemRight" valign="bottom"><b>getivec</b> (Setting &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 &S) const " --> |
---|
126 | const Array< string > </td><td class="memItemRight" valign="bottom"><b>get_as</b> (Setting &S) const </td></tr> |
---|
127 | |
---|
128 | </table> |
---|
129 | <hr>The documentation for this class was generated from the following file:<ul> |
---|
130 | <li><a class="el" href="libDS__ui_8h-source.html">libDS_ui.h</a></ul> |
---|
131 | </div> |
---|
132 | <hr size="1"><address style="text-align: right;"><small>Generated on Wed Feb 18 17:38:55 2009 for mixpp by |
---|
133 | <a href="http://www.doxygen.org/index.html"> |
---|
134 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address> |
---|
135 | </body> |
---|
136 | </html> |
---|