~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/plugins/fits_nonlinear/general_levenberg_marquardt/kstfit_general_levenberg_marquardt.xml

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-06-30 19:11:30 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630191130-acumuar75bz4puty
Tags: 1.2.1-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!DOCTYPE Module SYSTEM "file:/Repository/Level2/Soft/ProC/moduledef.dtd">
 
3
<module>
 
4
<intro>
 
5
<modulename name="kstfit_general_levenberg_marquardt" readableName="Fit any non-linear function"/>
 
6
<author name="Nicolas Brisset"/>
 
7
<description text="Generates a fit for a set of data using the Levenberg-Marquardt algorithm."/>
 
8
<version minor="1" major="0"/>
 
9
<fit/>
 
10
<state devstate="beta"/>
 
11
</intro>
 
12
 
 
13
<interface>
 
14
<input>
 
15
<table type="float" name="X Array" descr="The array of X coordinates" />
 
16
</input>
 
17
<input>
 
18
<table type="float" name="Y Array" descr="The array of Y coordinates" />
 
19
</input>
 
20
<input>
 
21
<string name="Formula y=" descr="The function to fit" default="a*x^3 + b*x^2 - c*x + d"/>
 
22
</input>
 
23
<input>
 
24
<string name="Parameters" descr="Comma-separated list of parameter names" default="a, b, c, d"/>
 
25
</input>
 
26
<input>
 
27
<string name="Init values" descr="Comma-separated list of initial parameter values" default="1, 1, 1, 1"/>
 
28
</input>
 
29
<input>
 
30
<float name="Tolerance" descr="Tolerance" default="1e-4"/>
 
31
</input>
 
32
<input>
 
33
<float name="Max iterations" descr="The maximum number of iterations allowed" default="200"/>
 
34
</input>
 
35
 
 
36
<output>
 
37
<table type="float" name="Y Fitted" descr="The array of fitted Y values" />
 
38
</output>
 
39
<output>
 
40
<table type="floatNonVector" name="Parameters" descr="The parameter values of the fit" />
 
41
</output>
 
42
<output>
 
43
<table type="floatNonVector" name="Covariance" descr="The covariance matrix of the fit" />
 
44
</output>
 
45
</interface>
 
46
</module>
 
47