~ubuntu-branches/ubuntu/trusty/gsl-ref-html/trusty

« back to all changes in this revision

Viewing changes to Multidimensional-Minimization.html

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2006-04-12 19:46:32 UTC
  • mfrom: (1.3.1 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060412194632-c9lodpl075pv9si3
Tags: 1.8-1
* New upstream release 1.8
* As with previous releases, the sources were obtained from the FSF web 
  pages by means of a wget call (c.f. the debian/rules target 'upstream')

* debian/control: Standards-Version increased to 3.6.2
* debian/copyright: Updated FSF address
* debian/rules: Set DH_COMPAT=4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html lang="en">
 
2
<head>
 
3
<title>Multidimensional Minimization - GNU Scientific Library -- Reference Manual</title>
 
4
<meta http-equiv="Content-Type" content="text/html">
 
5
<meta name="description" content="GNU Scientific Library -- Reference Manual">
 
6
<meta name="generator" content="makeinfo 4.8">
 
7
<link title="Top" rel="start" href="index.html#Top">
 
8
<link rel="prev" href="Multidimensional-Root_002dFinding.html#Multidimensional-Root_002dFinding" title="Multidimensional Root-Finding">
 
9
<link rel="next" href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting" title="Least-Squares Fitting">
 
10
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
 
11
<!--
 
12
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 The GSL Team.
 
13
 
 
14
Permission is granted to copy, distribute and/or modify this document
 
15
under the terms of the GNU Free Documentation License, Version 1.2 or
 
16
any later version published by the Free Software Foundation; with the
 
17
Invariant Sections being ``GNU General Public License'' and ``Free Software
 
18
Needs Free Documentation'', the Front-Cover text being ``A GNU Manual'',
 
19
and with the Back-Cover Text being (a) (see below).  A copy of the
 
20
license is included in the section entitled ``GNU Free Documentation
 
21
License''.
 
22
 
 
23
(a) The Back-Cover Text is: ``You have freedom to copy and modify this
 
24
GNU Manual, like GNU software.''-->
 
25
<meta http-equiv="Content-Style-Type" content="text/css">
 
26
<style type="text/css"><!--
 
27
  pre.display { font-family:inherit }
 
28
  pre.format  { font-family:inherit }
 
29
  pre.smalldisplay { font-family:inherit; font-size:smaller }
 
30
  pre.smallformat  { font-family:inherit; font-size:smaller }
 
31
  pre.smallexample { font-size:smaller }
 
32
  pre.smalllisp    { font-size:smaller }
 
33
  span.sc    { font-variant:small-caps }
 
34
  span.roman { font-family:serif; font-weight:normal; } 
 
35
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
 
36
--></style>
 
37
</head>
 
38
<body>
 
39
<div class="node">
 
40
<p>
 
41
<a name="Multidimensional-Minimization"></a>
 
42
Next:&nbsp;<a rel="next" accesskey="n" href="Least_002dSquares-Fitting.html#Least_002dSquares-Fitting">Least-Squares Fitting</a>,
 
43
Previous:&nbsp;<a rel="previous" accesskey="p" href="Multidimensional-Root_002dFinding.html#Multidimensional-Root_002dFinding">Multidimensional Root-Finding</a>,
 
44
Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a>
 
45
<hr>
 
46
</div>
 
47
 
 
48
<h2 class="chapter">35 Multidimensional Minimization</h2>
 
49
 
 
50
<p><a name="index-minimization_002c-multidimensional-2217"></a>
 
51
This chapter describes routines for finding minima of arbitrary
 
52
multidimensional functions.  The library provides low level components
 
53
for a variety of iterative minimizers and convergence tests.  These can
 
54
be combined by the user to achieve the desired solution, while providing
 
55
full access to the intermediate steps of the algorithms.  Each class of
 
56
methods uses the same framework, so that you can switch between
 
57
minimizers at runtime without needing to recompile your program.  Each
 
58
instance of a minimizer keeps track of its own state, allowing the
 
59
minimizers to be used in multi-threaded programs. The minimization
 
60
algorithms can be used to maximize a function by inverting its sign.
 
61
 
 
62
   <p>The header file <samp><span class="file">gsl_multimin.h</span></samp> contains prototypes for the
 
63
minimization functions and related declarations.
 
64
 
 
65
<ul class="menu">
 
66
<li><a accesskey="1" href="Multimin-Overview.html#Multimin-Overview">Multimin Overview</a>
 
67
<li><a accesskey="2" href="Multimin-Caveats.html#Multimin-Caveats">Multimin Caveats</a>
 
68
<li><a accesskey="3" href="Initializing-the-Multidimensional-Minimizer.html#Initializing-the-Multidimensional-Minimizer">Initializing the Multidimensional Minimizer</a>
 
69
<li><a accesskey="4" href="Providing-a-function-to-minimize.html#Providing-a-function-to-minimize">Providing a function to minimize</a>
 
70
<li><a accesskey="5" href="Multimin-Iteration.html#Multimin-Iteration">Multimin Iteration</a>
 
71
<li><a accesskey="6" href="Multimin-Stopping-Criteria.html#Multimin-Stopping-Criteria">Multimin Stopping Criteria</a>
 
72
<li><a accesskey="7" href="Multimin-Algorithms.html#Multimin-Algorithms">Multimin Algorithms</a>
 
73
<li><a accesskey="8" href="Multimin-Examples.html#Multimin-Examples">Multimin Examples</a>
 
74
<li><a accesskey="9" href="Multimin-References-and-Further-Reading.html#Multimin-References-and-Further-Reading">Multimin References and Further Reading</a>
 
75
</ul>
 
76
 
 
77
   </body></html>
 
78