scinum icon indicating copy to clipboard operation
scinum copied to clipboard

Scientific numbers with multiple uncertainties, correlation-aware gaussian error propagation and numpy support.

Results 3 scinum issues
Sort by recently updated
recently updated
newest added

I just tripped on the fact that ```python num = Number(0., (+2, 0.)) print(num) print(num.str('publication')) # Same result for the next two #print(num.str('pdg')) #print(num.str('pdg+1')) ``` yields ``` 0.0 +2.0-0.0 Traceback...

Hi! I was wondering whether it wouldn't make sense to add unit support to the Number class, so that you can do something like this: ```python distance = Number(1, 0.1,...