Mercurial > hg > ltpda
diff m-toolbox/html_help/help/ug/constructor_examples_provenance_content.html @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/html_help/help/ug/constructor_examples_provenance_content.html Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,82 @@ +<!-- $Id: constructor_examples_provenance_content.html,v 1.1 2008/03/30 20:40:04 ingo Exp $ --> + +<!-- -------------------------------------------------- --> +<!-- --------------- BEGIN CONTENT FILE --------------- --> +<!-- -------------------------------------------------- --> + +<!-- --------------- Link box: begin --------------- --> +<table border="0" summary="Simple list" class="simplelist_nottable_last"> + <tr> + <td> + <a href="constructor_examples_provenance.html#empty">Construct empty PROVENANCE object</a> + </td> + </tr> + <tr> + <td> + <a href="constructor_examples_provenance.html#xml_file">Construct a PROVENANCE object by loading the object from a file</a> + </td> + </tr> + <tr> + <td> + <a href="constructor_examples_provenance.html#creator">Construct a PROVENANCE object with a 'creator' name</a> + </td> + </tr> +</table> + +<p>Poles are specified by in the LTPDA Toolbox by a frequency, f, and (optionally) a quality factor, Q.</p> +<!-- --------------- Link box: end --------------- --> + +<!-- --------------- NEXT EXAMPLE --------------- --> + +<hr> +<h2 class="title"><a name="empty"></a>Construct empty PROVENANCE object</h2> +<p>The following example creates an empty provenance object</p> +<div class="fragment"><pre class="programlisting"> +p = provenance() + +-------- provenance 01 ------------ + + creator: diepholz + created: 2008-03-30 17:35:33.943 + ip: 127.0.1.1 + hostname: HWS169 + os: GLNXA64 + MATLAB ver: 7.5 (R2007b) +Sig Proc ver: 6.8 (R2007b) + LTPDA ver: 9.900000e-01 (R2007b) +----------------------------------- +</pre></div> + +<!-- --------------- NEXT EXAMPLE --------------- --> + +<hr> +<h2 class="title"><a name="xml_file"></a>Construct a PROVENANCE object by loading the object from a file</h2> +<p>The following example creates a new provenance object by loading the provenance object from disk.</p> +<div class="fragment"><pre class="programlisting"> +p = provenance(<span class="string">'provenance.mat'</span>) +p = provenance(<span class="string">'provenance.xml'</span>) +</pre></div> + +<!-- --------------- NEXT EXAMPLE --------------- --> + +<hr> +<h2 class="title"><a name="creator"></a>Construct a PROVENANCE object with a 'creator' name</h2> +<p>If a 'creator' name is specified then creates the constructor a PROVENANCE object with this name as the creator.</p> +<div class="fragment"><pre class="programlisting"> +p = provenance(<span class="string">'other user'</span>) +-------- provenance 01 ------------ + + creator: other user + created: 2008-03-30 17:36:52.369 + ip: 127.0.1.1 + hostname: HWS169 + os: GLNXA64 + MATLAB ver: 7.5 (R2007b) +Sig Proc ver: 6.8 (R2007b) + LTPDA ver: 9.900000e-01 (R2007b) +----------------------------------- +</pre></div> + +<!-- ------------------------------------------------ --> +<!-- --------------- END CONTENT FILE --------------- --> +<!-- ------------------------------------------------ -->