summaryrefslogtreecommitdiff
path: root/lmfit.egg-info/PKG-INFO
blob: 3b9a3b180e092a19312ddc91972b3ce7afa10772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Metadata-Version: 1.2
Name: lmfit
Version: 1.0.1
Summary: Least-Squares Minimization with Bounds and Constraints
Home-page: https://lmfit.github.io/lmfit-py/
Author: LMFit Development Team
Author-email: matt.newville@gmail.com
License: BSD-3
Download-URL: https://lmfit.github.io//lmfit-py/
Description: A library for least-squares minimization and data fitting in
        Python.  Built on top of scipy.optimize, lmfit provides a Parameter object
        which can be set as fixed or free, can have upper and/or lower bounds, or
        can be written in terms of algebraic constraints of other Parameters.  The
        user writes a function to be minimized as a function of these Parameters,
        and the scipy.optimize methods are used to find the optimal values for the
        Parameters.  The Levenberg-Marquardt (leastsq) is the default minimization
        algorithm, and provides estimated standard errors and correlations between
        varied Parameters.  Other minimization methods, including Nelder-Mead's
        downhill simplex, Powell's method, BFGS, Sequential Least Squares, and
        others are also supported.  Bounds and constraints can be placed on
        Parameters for all of these methods.
        
        In addition, methods for explicitly calculating confidence intervals are
        provided for exploring minmization problems where the approximation of
        estimating Parameter uncertainties from the covariance matrix is
        questionable. 
Keywords: curve-fitting,least-squares minimization
Platform: Windows
Platform: Linux
Platform: Mac OS X
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.5