Mercurial > hg > ltpda
comparison m-toolbox/html_help/help/ug/releasenotesV2_2_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 | |
2 <!-- BEGIN: Content file --> | |
3 | |
4 <a name="top_of_page"></a> | |
5 <p>This table summarizes what's new in Version 2.2:</p> | |
6 <table cellspacing="0" class="body" cellpadding="4" border="2" width="100%"> | |
7 <colgroup> | |
8 <col width="25%"> | |
9 <col width="25%"> | |
10 <col width="25%"> | |
11 <col width="25%"> | |
12 </colgroup> | |
13 <thead> | |
14 <tr valign="top"> | |
15 <th bgcolor="#B2B2B2" valign="top"><p>New Features and Changes</p></th> | |
16 <th bgcolor="#B2B2B2" valign="top"><p>Version Compatibility Considerations</p></th> | |
17 <th bgcolor="#B2B2B2" valign="top"><p>Fixed Bugs and Known Problems</p></th> | |
18 <th bgcolor="#B2B2B2" valign="top"><p>Related Documentation at Web Site</p></th> | |
19 </tr> | |
20 </thead> | |
21 <tbody> | |
22 <tr valign="top"> | |
23 <td bgcolor="#F2F2F2"><p>Yes<br>Details below</p></td> | |
24 <td bgcolor="#F2F2F2"><p>Yes — Details labeled as <b>New repository manager</b> in descriptions of changes, below. See also <a href="#rm">Summary</a>.</p></td> | |
25 <td bgcolor="#F2F2F2"><p><a href="https://ed.fbk.eu/ltpda/mantis/login_page.php" target="_top">Bug Reports</a> at Web site</p></td> | |
26 <td bgcolor="#F2F2F2"><p>Printable Release Notes: <a href="http://www.lisa.aei-hannover.de/ltpda/downloads/version_2.2/files/Release_Notes_v2.2.pdf" target="_top">PDF</a></p></td> | |
27 </tr> | |
28 </tbody> | |
29 </table> | |
30 <p></p> | |
31 <ul> | |
32 <li><p><a href="#introduction">Introduction</a></p></li> | |
33 <li><p><a href="#newFeatures">New toolbox features</a></p></li> | |
34 <li><p><a href="#newFitting">New linear fitting tools in LTPDA</a></p></li> | |
35 <li><p><a href="#rm">New repository manager</a></p></li> | |
36 </ul> | |
37 | |
38 <!-- HEADLINE: Introduction --> | |
39 | |
40 <h3 class="title" id="introduction">Introduction</h3> | |
41 <p>This version of LTPDA is 2.2. This document lists the changes since V2.1.</p> | |
42 | |
43 <!-- HEADLINE: New toolbox features --> | |
44 | |
45 <h3 class="title" id="newFeatures">New toolbox features</h3> | |
46 <p>Version 2.2 of LTPDA has various new features.</p> | |
47 <ul> | |
48 <li><p>A reworking of the way connections to LTPDA repositories are handled. Now all connections are managed by the new "LTPDA Repository Manager" object which is created when <b>ltpda_startup</b> is executed. <i>All users should review their use of repository connection code in any scripts and make the appropriate changes to work with the repository manager</i> (<a href="#rm">see below</a>).</p></li> | |
49 <li><p>A significant amount of work has been done on fitting tools (<a href="#newFitting">see below</a>).</p></li> | |
50 <li><p>A new class called pest (parameter estimation) has been included which aims to capture details of the various fitting procedures in LTPDA. <i>Objects of this class are now output from all LTPDA fitting function, so some changes to existing analysis scripts and pipelines may be necessary</i>.</p></li> | |
51 </ul> | |
52 | |
53 <!-- HEADLINE: New linear fitting tools in LTPDA --> | |
54 | |
55 <h3 class="title" id="newFitting">New linear fitting tools in LTPDA</h3> | |
56 <p>The linear fitting tools are specialised <b>ao</b> methods, built around MATLAB's <b>lscov</b>. All of them return a <b>pest</b> (parameters estimate) object where the fields are containing:</p> | |
57 <ol> | |
58 <li><p>Fit parameters</p></li> | |
59 <li><p>Uncertainties on the fit parameters (given as standard deviations)</p></li> | |
60 <li><p>The reduced CHI2 of the fit</p></li> | |
61 <li><p>The covariance matrix</p></li> | |
62 <li><p>The degrees of freedom of the fit.</p></li> | |
63 </ol> | |
64 <p>The following methods are implemented:</p> | |
65 <ul> | |
66 <li><p><b>ao/linfit</b> solves an equation in the form <b>Y = P(1) + X * P(2)</b> for the fit parameters <b>P</b>.</p></li> | |
67 <li><p><b>ao/bilinfit</b> solves an equation in the form <b>Y = X(1) * P(1) + X(2) * P(2) + ... + P(N+1)</b> for the fit parameters <b>P</b>.</p></li> | |
68 <li><p><b>ao/polyfit</b> overloads <b>polyfit()</b> function of MATLAB for Analysis Objects. It finds the coefficients of a polynomial P(X) of degree N that fits the data Y best in a least-squares sense: <b>P(1)*X^N + P(2)*X^(N-1) +...+ P(N)*X + P(N+1)</b></p></li> | |
69 <li><p><b>ao/polynomfit</b> solves an equation in the form <b>Y = P(1) * X^N(1) + P(2) * X^N(2) + ...</b> for the fit parameters <b>P</b>. It handles arbitrary powers of the input vector and uncertainties on the dependent vector Y and input vectors X.</p></li> | |
70 <li><p><b>ao/lscov</b> is a wrapper for MATLAB's <b>lscov</b> function. It solves a set of linear equations by performing a linear least-squares fit. It solves the problem <b>Y = HX</b> where X are the parameters, Y the measurements, and H the linear equations relating the two.</p></li> | |
71 </ul> | |
72 | |
73 <!-- HEADLINE: New repository manager --> | |
74 | |
75 <h3 class="title" id="rm">New repository manager</h3> | |
76 <p>Until the main documentation is updated, the following a some quick tips to using | |
77 the new repository manager.</p> | |
78 <p>Only a single instance of the repository manager exists. It is created when you | |
79 run <b>ltpda_startup</b>. To access the repository manager, you can do:</p> | |
80 <div class="fragment"><pre> | |
81 >> rm = LTPDARepositoryManager | |
82 ---- Repository Manager ----- | |
83 connections: 0 | |
84 connected: 0 | |
85 ------------------------------</pre></div> | |
86 <p>The Repository Manager has both a scripting interface and a graphical user interface. To launch the GUI:</p> | |
87 <div class="fragment"><pre> | |
88 >> rm.showGui</pre></div> | |
89 <img src="images/RepositoryManager.png" alt="Repository Manager" border="3" width="588px" height="267px" vspace="10px"> | |
90 <p>Using the scripting interface, you can create new connections and search for existing connects:</p> | |
91 <div class="fragment"><pre> | |
92 >> rm.newConnection('localhost', 'ltpda_test', 'hewitson')</pre></div> | |
93 <p>specifying the hostname, the database and the username. You can also give the password | |
94 in plain text to the newConnection command, but that's clearly not advisable.</p> | |
95 <p>Making new connections like this allows you to set up your typical connections in | |
96 your <b>startup.m</b> file (after executing <b>ltpda_startup</b>).</p> | |
97 <p>A couple of words about time-outs. The repository manager uses two timers to maintain two | |
98 aspects of each connection.</p> | |
99 <p>The first timer handles whether or not the connection is actually connected to the server. This | |
100 timer is not user configurable and is set to fire every few seconds so that connections are | |
101 typically in the disconnected state (you can see this state in the 'age' column of the | |
102 repository manager gui). Whenever the user tries to use a valid existing connection, the | |
103 connection is opened and then locked until it is not needed anymore. This is transparent for | |
104 the user and is handled automatically in methods like <b>submit</b>, <b>retrieve</b> and <b>update</b>.</p> | |
105 <p>The second timer is user configurable via the LTPDA preferences. This timer defines when the | |
106 password for each connection expires. This creates a level of safety so that connections from | |
107 one user can not easily be abused by other uses. When this password fires, it checks how | |
108 long each connection has been idle, and clears the password if it is older than the setting in | |
109 the preferences. Connections with their password cleared are red on the repository manager | |
110 gui. The next time the user attempts to use a connection whose password has been cleared, | |
111 they will be prompted to re-enter the password.</p> | |
112 | |
113 <!-- END: Content file --> |