[591] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
| 3 | <head> |
---|
| 4 | <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> |
---|
[472] | 5 | <title>mixpp: mex_datasource.h Source File</title> |
---|
[591] | 6 | <link href="tabs.css" rel="stylesheet" type="text/css"/> |
---|
| 7 | <link href="doxygen.css" rel="stylesheet" type="text/css"/> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <!-- Generated by Doxygen 1.6.1 --> |
---|
[472] | 11 | <script type="text/javascript"> |
---|
| 12 | <!-- |
---|
| 13 | function changeDisplayState (e){ |
---|
| 14 | var num=this.id.replace(/[^[0-9]/g,''); |
---|
| 15 | var button=this.firstChild; |
---|
| 16 | var sectionDiv=document.getElementById('dynsection'+num); |
---|
| 17 | if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ |
---|
| 18 | sectionDiv.style.display='block'; |
---|
| 19 | button.src='open.gif'; |
---|
| 20 | }else{ |
---|
| 21 | sectionDiv.style.display='none'; |
---|
| 22 | button.src='closed.gif'; |
---|
| 23 | } |
---|
| 24 | } |
---|
| 25 | function initDynSections(){ |
---|
| 26 | var divs=document.getElementsByTagName('div'); |
---|
| 27 | var sectionCounter=1; |
---|
| 28 | for(var i=0;i<divs.length-1;i++){ |
---|
| 29 | if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ |
---|
| 30 | var header=divs[i]; |
---|
| 31 | var section=divs[i+1]; |
---|
| 32 | var button=header.firstChild; |
---|
| 33 | if (button!='IMG'){ |
---|
| 34 | divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); |
---|
| 35 | button=document.createElement('img'); |
---|
| 36 | divs[i].insertBefore(button,divs[i].firstChild); |
---|
| 37 | } |
---|
| 38 | header.style.cursor='pointer'; |
---|
| 39 | header.onclick=changeDisplayState; |
---|
| 40 | header.id='dynheader'+sectionCounter; |
---|
| 41 | button.src='closed.gif'; |
---|
| 42 | section.id='dynsection'+sectionCounter; |
---|
| 43 | section.style.display='none'; |
---|
| 44 | section.style.marginLeft='14px'; |
---|
| 45 | sectionCounter++; |
---|
| 46 | } |
---|
| 47 | } |
---|
| 48 | } |
---|
| 49 | window.onload = initDynSections; |
---|
| 50 | --> |
---|
| 51 | </script> |
---|
| 52 | <div class="navigation" id="top"> |
---|
| 53 | <div class="tabs"> |
---|
| 54 | <ul> |
---|
| 55 | <li><a href="main.html"><span>Main Page</span></a></li> |
---|
| 56 | <li><a href="pages.html"><span>Related Pages</span></a></li> |
---|
| 57 | <li><a href="annotated.html"><span>Classes</span></a></li> |
---|
| 58 | <li class="current"><a href="files.html"><span>Files</span></a></li> |
---|
| 59 | </ul> |
---|
| 60 | </div> |
---|
| 61 | <div class="tabs"> |
---|
| 62 | <ul> |
---|
| 63 | <li><a href="files.html"><span>File List</span></a></li> |
---|
| 64 | <li><a href="globals.html"><span>File Members</span></a></li> |
---|
| 65 | </ul> |
---|
| 66 | </div> |
---|
[591] | 67 | <h1>mex_datasource.h</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#include "../bdm/bdmerror.h"</span> |
---|
| 68 | <a name="l00002"></a>00002 <span class="preprocessor">#include "../bdm/stat/datasources.h"</span> |
---|
| 69 | <a name="l00003"></a>00003 <span class="preprocessor">#include "mex_parser.h"</span> |
---|
| 70 | <a name="l00004"></a>00004 |
---|
| 71 | <a name="l00005"></a>00005 <span class="keyword">namespace </span>bdm { |
---|
| 72 | <a name="l00013"></a><a class="code" href="classbdm_1_1MexDS.html">00013</a> <span class="keyword">class </span><a class="code" href="classbdm_1_1MexDS.html" title="Memory storage of off-line data column-wise.">MexDS</a> : <span class="keyword">public</span> <a class="code" href="classbdm_1_1MemDS.html" title="Memory storage of off-line data column-wise.">MemDS</a> { |
---|
| 73 | <a name="l00015"></a>00015 <a class="code" href="classbdm_1_1MexDS.html" title="Memory storage of off-line data column-wise.">MexDS</a> () {}; |
---|
| 74 | <a name="l00016"></a>00016 |
---|
| 75 | <a name="l00034"></a>00034 <span class="keywordtype">void</span> from_setting ( <span class="keyword">const</span> Setting &<span class="keyword">set</span> ) { |
---|
| 76 | <a name="l00035"></a>00035 <a class="code" href="classbdm_1_1MemDS.html#aa724f4cbfc32e79bacc044253234e260" title="internal matrix of data">Data</a> = mxArray2mat ( mexGetVariable ( <span class="stringliteral">"base"</span>, <span class="keyword">set</span>[<span class="stringliteral">"varname"</span>] ) ); |
---|
| 77 | <a name="l00036"></a>00036 <a class="code" href="classbdm_1_1UI.html#acd1667e6fec99ec64dabcb3ca2ff922d">UI::get</a> ( <a class="code" href="classbdm_1_1MemDS.html#a865814d49913dcf672bb20a4334d3dc4" title="vector of rows that are presented in Dt">rowid</a>, <span class="keyword">set</span>, <span class="stringliteral">"rids"</span> , UI::compulsory ); |
---|
| 78 | <a name="l00037"></a>00037 <a class="code" href="bdmerror_8h.html#a89a0f906b242b79c5d3d342291b2cab4" title="Throw std::runtime_exception if t is not true and NDEBUG is not defined.">bdm_assert_debug</a> ( max ( <a class="code" href="classbdm_1_1MemDS.html#a865814d49913dcf672bb20a4334d3dc4" title="vector of rows that are presented in Dt">rowid</a> ) <= <a class="code" href="classbdm_1_1MemDS.html#aa724f4cbfc32e79bacc044253234e260" title="internal matrix of data">Data</a>.rows(), <span class="stringliteral">"MemDS rowid is too high for given Dat."</span> ); |
---|
[472] | 79 | <a name="l00038"></a>00038 |
---|
[591] | 80 | <a name="l00039"></a>00039 <a class="code" href="classbdm_1_1UI.html#acd1667e6fec99ec64dabcb3ca2ff922d">UI::get</a> ( <a class="code" href="classbdm_1_1MemDS.html#a166522aed4d3b12d9b3c2afaf6673301" title="vector of delays that are presented in Dt">delays</a>, <span class="keyword">set</span>, <span class="stringliteral">"tds"</span>, UI::compulsory ); |
---|
| 81 | <a name="l00040"></a>00040 <a class="code" href="classbdm_1_1MemDS.html#a681ee3831f68f4f20ed54e04e8b3f107" title="active column in the Data matrix">time</a> = max ( <a class="code" href="classbdm_1_1MemDS.html#a166522aed4d3b12d9b3c2afaf6673301" title="vector of delays that are presented in Dt">delays</a> ); |
---|
| 82 | <a name="l00041"></a>00041 <a class="code" href="bdmerror_8h.html#a89a0f906b242b79c5d3d342291b2cab4" title="Throw std::runtime_exception if t is not true and NDEBUG is not defined.">bdm_assert_debug</a> ( <a class="code" href="classbdm_1_1MemDS.html#a681ee3831f68f4f20ed54e04e8b3f107" title="active column in the Data matrix">time</a> < <a class="code" href="classbdm_1_1MemDS.html#aa724f4cbfc32e79bacc044253234e260" title="internal matrix of data">Data</a>.cols(), <span class="stringliteral">"MemDS delays are too high."</span> ); |
---|
[472] | 83 | <a name="l00042"></a>00042 |
---|
[591] | 84 | <a name="l00043"></a>00043 <a class="code" href="classbdm_1_1shared__ptr.html" title="A naive implementation of roughly a subset of the std::tr1::shared_ptr spec.">shared_ptr<RV></a> r = UI::build<RV> ( <span class="keyword">set</span>, <span class="stringliteral">"rv"</span>, UI::compulsory ); |
---|
| 85 | <a name="l00044"></a>00044 <a class="code" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">RV</a> ru = <a class="code" href="classbdm_1_1RV.html" title="Class representing variables, most often random variables.">RV</a>(); |
---|
| 86 | <a name="l00045"></a>00045 set_rvs ( *r, ru ); |
---|
[472] | 87 | <a name="l00046"></a>00046 } |
---|
| 88 | <a name="l00047"></a>00047 |
---|
| 89 | <a name="l00048"></a>00048 |
---|
| 90 | <a name="l00049"></a>00049 <span class="comment">// TODO dodelat void to_setting( Setting &set ) const;</span> |
---|
| 91 | <a name="l00050"></a>00050 }; |
---|
| 92 | <a name="l00051"></a>00051 |
---|
[591] | 93 | <a name="l00052"></a>00052 <a class="code" href="user__info_8h.html#a4f9de2f17e844047726487b99def99c6" title="Macro for registration of class into map of user-infos, registered class is scriptable...">UIREGISTER</a> ( <a class="code" href="classbdm_1_1MexDS.html" title="Memory storage of off-line data column-wise.">MexDS</a> ); |
---|
| 94 | <a name="l00053"></a>00053 SHAREDPTR ( <a class="code" href="classbdm_1_1MexDS.html" title="Memory storage of off-line data column-wise.">MexDS</a> ); |
---|
| 95 | <a name="l00054"></a>00054 |
---|
| 96 | <a name="l00055"></a>00055 } |
---|
[472] | 97 | </pre></div></div> |
---|
[591] | 98 | <hr size="1"/><address style="text-align: right;"><small>Generated on Sun Aug 30 22:10:49 2009 for mixpp by |
---|
[472] | 99 | <a href="http://www.doxygen.org/index.html"> |
---|
[591] | 100 | <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address> |
---|
[472] | 101 | </body> |
---|
| 102 | </html> |
---|