https://github.com/zimmerrol/mathematica-error-propagation
Automates the error propagation of physical results
https://github.com/zimmerrol/mathematica-error-propagation
Last synced: 5 months ago
JSON representation
Automates the error propagation of physical results
- Host: GitHub
- URL: https://github.com/zimmerrol/mathematica-error-propagation
- Owner: zimmerrol
- License: mit
- Created: 2015-12-12T10:14:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-24T08:31:57.000Z (over 10 years ago)
- Last Synced: 2025-04-03T19:47:15.110Z (about 1 year ago)
- Language: Mathematica
- Homepage:
- Size: 2.93 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mathematica-error-propagation
To use this packet, please import it with
``Needs["ErrProp`", "C:\\path\\to\\file\\ErrProp.wl"]``.
Methods:
``ErrorPropagation[m*w^2, {m, w}, {99.9, 0.2}, {0.6, 0.1}]``
Calculates the error using the error propation.
``TableForm[ErrorProgagationOnDataPath[m*w^2, {m, w}, "C:\\Users\\Roland\\Desktop\\Data.dat"]]``
``TableForm[ErrorProgagationOnDataList[m*w^2, {m, w},{{99.9, 0.2, 0.6, 0.1}, {99.9, 0.6, 0.2, 0.1}}]]``
``ErrorProgataionPrintFormula[m/w^2, {m, w}]``
Prints the formula which is used to calculate the error. This can be redirected to the TeXForm method to print LaTeX code by using
``TeXForm[ErrorProgataionPrintFormula[m/w^2, {m, w}]]``.