Metadata-Version: 2.1
Name: precise_rounding
Version: 0.1.2
Summary: Rounds a measurement value and its uncertainty to a specified number of significant digits.
Home-page: https://github.com/slawomirmarczynski/precise_rounding
Author: Sławomir Marczyński
Author-email: 
License: BSD-3-Clause
Description-Content-Type: text/markdown
License-File: LICENSE

# Rounds a measurement value

Rounds a measurement value and its uncertainty to a specified number
of significant digits.

Examples:

        >>> precise_rounding(123.45678, 0.01234)
        ('123.457', '0.013')

        >>> precise_rounding(123.45678, 0.515, 1)
        ('123.5', '0.6')
