You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can easily plot vectors of Measurement objects using the Plots.jl package. The uncertainties of the numbers will automatically be used as sizes of the errorbars.
@uncertain macro automatically converts all arguments of the function call to Measurement type, so that the user does not have to manually cast them.
New method for measurement(x::Measurement) returning x.
New methods for Measurements.value(x::Real) returning x and Measurements.uncertainty(x::Real) returning zero(x).
The package now supports pretty printing in Juno (#12, #13)
The tage used internally to identify an independent quantity is now a (thread-safe) counter, rather than a (thread-unsafe) random number (#15, #16).
New show method for text/latex MIME, used in Jupyter notebooks.