Difference between revisions of "Calculate jacobian hessian matrix in sympy exponential decay"
Jump to navigation
Jump to search
(→Tutorial with function for weighted difference between function evaluation with fitted parameters and measured values.: Switched to a {{collapsible script}} template to de-clutter the article.) |
(→Tutorial with quadratic chi2 function: Switched to the {{collapsible script}} template to de-clutter the article.) |
||
Line 157: | Line 157: | ||
SBiNLab | SBiNLab | ||
− | + | {{collapsible script | |
− | + | | type = Python script | |
− | + | | title = The <code>sympy_test.py</code> script. | |
− | + | | intro = Run with: <code>python sympy_test.py</code> | |
+ | | lang = python | ||
+ | | script = | ||
# Tutorial from: http://scipy-lectures.github.io/advanced/sympy.html | # Tutorial from: http://scipy-lectures.github.io/advanced/sympy.html | ||
Line 274: | Line 276: | ||
------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ||
""" % (d2_chi2_d_r2eff_d_r2eff,d2_chi2_d_r2eff_d_i0, d2_chi2_d_i0_d_r2eff, d2_chi2_d_i0_d_i0) ) | """ % (d2_chi2_d_r2eff_d_r2eff,d2_chi2_d_r2eff_d_i0, d2_chi2_d_i0_d_r2eff, d2_chi2_d_i0_d_i0) ) | ||
− | + | }} |
Revision as of 15:38, 3 November 2015
Contents
Calculate Jacobian and Hessian matrix in python sympy for exponential decay function
See also:
- https://en.wikipedia.org/wiki/Propagation_of_uncertainty
- http://en.wikipedia.org/wiki/Jacobian_matrix_and_determinant
- http://en.wikipedia.org/wiki/Hessian_matrix
- http://maxima-online.org/articles/hessian.html
- http://certik.github.io/scipy-2013-tutorial/html/tutorial/basic_operations.html
- http://scipy-lectures.github.io/advanced/sympy.html
- http://docs.sympy.org/dev/gotchas.html
- https://github.com/sympy/sympy/wiki/Faq
Sumpy python installation
Consider for example installing Enthought Canopy
Tutorial with function for weighted difference between function evaluation with fitted parameters and measured values.
Created by:
Troels Emtekær Linnet
PhD student
Copenhagen University
SBiNLab
run with:
$ python sympy_test.py
Python script: The
sympy_test.py
script.Tutorial with quadratic chi2 function
Created by:
Troels Emtekær Linnet
PhD student
Copenhagen University
SBiNLab
Python script: The
sympy_test.py
script.