Measurements.jl icon indicating copy to clipboard operation
Measurements.jl copied to clipboard

Error propagation calculator and library for physical measurements. It supports real and complex numbers with uncertainty, arbitrary precision calculations, operations with arrays, and numerical inte...

Results 26 Measurements.jl issues
Sort by recently updated
recently updated
newest added

This corrects the printing of measurements in expressions, like `:(2 * (1 ± .2))`.

``` julia> round(((12.34±0.02)u"m")/1.0u"m", sigdigits=2)u"m" 12.0 ± 0.02 m ``` This is counterintuitive and, frankly, incorrect. I expect a result where the uncertainty has been extended to represent the rounding, e.g....

It looks like this package has a lot of overhead for simple math operations - about 50 times slower than normal floats and uses 20 times more memory! Not even...

enhancement
help wanted
performance

Is it hard to make measurements support data with non-`missing` value, but `missing` uncertainty? Data with missing uncertainty is quite different from the data with zero uncertainty, so it is...

Adds in the recipes for Makie.jl from #95.

Incomplete, proof of concept, missing tests, etc. Refs. https://github.com/JuliaPhysics/Measurements.jl/issues/142

* Added `uncertainty_plot` keyword to plot recipes for `Measurement` instances for the y-axis. * Implemented the previously existing functionality of uncertainty bar plot as the default. * Example usage and...

I'd like to compute up to third-order derivatives with respect to a scalar (non-measurement) of a measurement-valued function. Something along the lines of this demo: ```julia julia> using Measurements julia>...

Hi, I've got some results that are a mixture of measurements and missing data (type ` Vector{Union{Missing, Measurement{Float64}}}`). However, I get a `MethodError` if I try to plot these: ```julia...

Based on #123 . but using the 1.9 extensions mechanism. should solve #95, https://github.com/MakieOrg/Makie.jl/issues/875 . Tests missing. (just call `Makie.convert_arguments`, it seems)