uncertainties
uncertainties copied to clipboard
Uncertainties for multiple function outputs
Dear Eric,
I am very happily using your Python Uncertainty package. Sharing work like this is really how the internet should be used.
I process compressor data and wrote a function of the form (simplified):
parameter1, parameter2 = ThermalAnalysis(measurement1,measurement2)
... where measurement1 and measurement2 have uncertainties. I found that I can only wrap the ThermalAnalysis function with your package if I reduce it to have only one output instead of two. My workaround works but isn't very slick, I just run the function twice and first get only parameter1 and then only parameter2.
Is there a solution for this?
Thanks much!