Metadata-Version: 2.1
Name: metas-unclib
Version: 2.9.4
Summary: An advanced measurement uncertainty calculator
Home-page: https://www.metas.ch/unclib
Author: Michael Wollensack
Author-email: michael.wollensack@metas.ch
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pythonnet

# METAS UncLib

To use METAS UncLib, simply do:

    >>> from metas_unclib import *
    >>> use_linprop()

    >>> a = ufloat(3.0, 0.3, desc='a')
    >>> b = ufloat(4.0, 0.4, desc='b')

    >>> c = umath.sqrt(a**2 + b**2)
    >>> print(c)
    5.0 ± 0.3671511950137164


# Requirements

- numpy
- pythonnet
- on *Linux* and *macOS*: [Mono .NET framework](https://www.mono-project.com)

# Optional Requirements

- scipy
- matplotlib
- jupyter


