comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 <!-- $Id: constructor_examples_provenance_content.html,v 1.1 2008/03/30 20:40:04 ingo Exp $ -->
2
3 <!-- -------------------------------------------------- -->
4 <!-- --------------- BEGIN CONTENT FILE --------------- -->
5 <!-- -------------------------------------------------- -->
6
7 <!-- --------------- Link box: begin --------------- -->
8 <table border="0" summary="Simple list" class="simplelist_nottable_last">
9 <tr>
10 <td>
11 <a href="constructor_examples_provenance.html#empty">Construct empty PROVENANCE object</a>
12 </td>
13 </tr>
14 <tr>
15 <td>
16 <a href="constructor_examples_provenance.html#xml_file">Construct a PROVENANCE object by loading the object from a file</a>
17 </td>
18 </tr>
19 <tr>
20 <td>
21 <a href="constructor_examples_provenance.html#creator">Construct a PROVENANCE object with a 'creator' name</a>
22 </td>
23 </tr>
24 </table>
25
26 <p>Poles are specified by in the LTPDA Toolbox by a frequency, f, and (optionally) a quality factor, Q.</p>
27 <!-- --------------- Link box: end --------------- -->
28
29 <!-- --------------- NEXT EXAMPLE --------------- -->
30
31 <hr>
32 <h2 class="title"><a name="empty"></a>Construct empty PROVENANCE object</h2>
33 <p>The following example creates an empty provenance object</p>
34 <div class="fragment"><pre class="programlisting">
35 p = provenance()
36
37 -------- provenance 01 ------------
38
39 creator: diepholz
40 created: 2008-03-30 17:35:33.943
41 ip: 127.0.1.1
42 hostname: HWS169
43 os: GLNXA64
44 MATLAB ver: 7.5 (R2007b)
45 Sig Proc ver: 6.8 (R2007b)
46 LTPDA ver: 9.900000e-01 (R2007b)
47 -----------------------------------
48 </pre></div>
49
50 <!-- --------------- NEXT EXAMPLE --------------- -->
51
52 <hr>
53 <h2 class="title"><a name="xml_file"></a>Construct a PROVENANCE object by loading the object from a file</h2>
54 <p>The following example creates a new provenance object by loading the provenance object from disk.</p>
55 <div class="fragment"><pre class="programlisting">
56 p = provenance(<span class="string">'provenance.mat'</span>)
57 p = provenance(<span class="string">'provenance.xml'</span>)
58 </pre></div>
59
60 <!-- --------------- NEXT EXAMPLE --------------- -->
61
62 <hr>
63 <h2 class="title"><a name="creator"></a>Construct a PROVENANCE object with a 'creator' name</h2>
64 <p>If a 'creator' name is specified then creates the constructor a PROVENANCE object with this name as the creator.</p>
65 <div class="fragment"><pre class="programlisting">
66 p = provenance(<span class="string">'other user'</span>)
67 -------- provenance 01 ------------
68
69 creator: other user
70 created: 2008-03-30 17:36:52.369
71 ip: 127.0.1.1
72 hostname: HWS169
73 os: GLNXA64
74 MATLAB ver: 7.5 (R2007b)
75 Sig Proc ver: 6.8 (R2007b)
76 LTPDA ver: 9.900000e-01 (R2007b)
77 -----------------------------------
78 </pre></div>
79
80 <!-- ------------------------------------------------ -->
81 <!-- --------------- END CONTENT FILE --------------- -->
82 <!-- ------------------------------------------------ -->