| 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: Writing and reading data from files</title> | 
|---|
| 4 | <link href="tabs.css" rel="stylesheet" type="text/css"> | 
|---|
| 5 | <link href="doxygen.css" rel="stylesheet" type="text/css"> | 
|---|
| 6 | </head><body> | 
|---|
| 7 | <!-- Generated by Doxygen 1.5.8 --> | 
|---|
| 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 class="current"><a href="pages.html"><span>Related Pages</span></a></li> | 
|---|
| 54 |       <li><a href="modules.html"><span>Modules</span></a></li> | 
|---|
| 55 |       <li><a href="annotated.html"><span>Classes</span></a></li> | 
|---|
| 56 |       <li><a href="files.html"><span>Files</span></a></li> | 
|---|
| 57 |     </ul> | 
|---|
| 58 |   </div> | 
|---|
| 59 |   <div class="navpath"><a class="el" href="manual.html">User Manual</a> | 
|---|
| 60 |   </div> | 
|---|
| 61 | </div> | 
|---|
| 62 | <div class="contents"> | 
|---|
| 63 | <h1><a class="anchor" name="itfile">Writing and reading data from files </a></h1>Here we will use the <code>it_file</code> class to store some data. The program <code>write_it_file.cpp</code> looks as follows:<p> | 
|---|
| 64 | <div class="fragment"><pre class="fragment"><span class="preprocessor">#include <itpp/itcomm.h></span> | 
|---|
| 65 |  | 
|---|
| 66 | <span class="keyword">using namespace </span>itpp; | 
|---|
| 67 |  | 
|---|
| 68 | <span class="keywordtype">int</span> main() | 
|---|
| 69 | { | 
|---|
| 70 |   <span class="comment">// Declare the it_file class</span> | 
|---|
| 71 |   it_file ff; | 
|---|
| 72 |  | 
|---|
| 73 |   <span class="comment">// Open a file with the name "it_file_test.it"</span> | 
|---|
| 74 |   ff.open(<span class="stringliteral">"it_file_test.it"</span>); | 
|---|
| 75 |  | 
|---|
| 76 |   <span class="comment">// Create some data to put into the file</span> | 
|---|
| 77 |   vec a = linspace(1, 20, 20); | 
|---|
| 78 |  | 
|---|
| 79 |   <span class="comment">// Put the variable a into the file. The Name("a") tells the file class</span> | 
|---|
| 80 |   <span class="comment">// that the next variable shall be named "a".</span> | 
|---|
| 81 |   ff << Name(<span class="stringliteral">"a"</span>) << a; | 
|---|
| 82 |  | 
|---|
| 83 |   <span class="comment">// Force the file to be written to disc. This is useful when performing</span> | 
|---|
| 84 |   <span class="comment">// iterations and ensures that the information is not stored in any cache</span> | 
|---|
| 85 |   <span class="comment">// memory. In this simple example it is not necessary to flush the file.</span> | 
|---|
| 86 |   ff.flush(); | 
|---|
| 87 |  | 
|---|
| 88 |   <span class="comment">// Close the file</span> | 
|---|
| 89 |   ff.close(); | 
|---|
| 90 |  | 
|---|
| 91 |   <span class="comment">// Exit program</span> | 
|---|
| 92 |   <span class="keywordflow">return</span> 0; | 
|---|
| 93 | } | 
|---|
| 94 | </pre></div><p> | 
|---|
| 95 | When you run this program you will obtain a file called <code>it_file_test.it</code> in your current directory. You can read the file into Matlab/Octave to view the data by using the following commands:<p> | 
|---|
| 96 | <div class="fragment"><pre class="fragment">itload(<span class="stringliteral">'it_file_test.it'</span>) | 
|---|
| 97 | figure(1); clf; | 
|---|
| 98 | plot(a) | 
|---|
| 99 | </pre></div><p> | 
|---|
| 100 | Note: Make sure that <code>$PREFIX/share/itpp</code> is in your Matlab/Octave path and that you run the code above from the directory where <code>it_file_test.it</code> is located (<code>$PREFIX</code> is the IT++ installation prefix; <code>/usr/local</code> by default).<p> | 
|---|
| 101 | The IT++ program <code>read_it_file.cpp</code> that reads the file and prints its content can look like this:<p> | 
|---|
| 102 | <div class="fragment"><pre class="fragment"></pre></div><p> | 
|---|
| 103 | Here is the output of the program:<p> | 
|---|
| 104 | <div class="fragment"><pre class="fragment"> | 
|---|
| 105 | a = [1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20] | 
|---|
| 106 | </pre></div> </div> | 
|---|
| 107 | <hr size="1"><address style="text-align: right;"><small>Generated on Wed Jul 1 13:05:56 2009 for mixpp by  | 
|---|
| 108 | <a href="http://www.doxygen.org/index.html"> | 
|---|
| 109 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> | 
|---|
| 110 | </body> | 
|---|
| 111 | </html> | 
|---|