Commit 9c2564ef authored by Jakob Stierhof's avatar Jakob Stierhof

hist1d_confidence bug fix

Function returned wrong order of results (and index was mixed up)
parent 7597a999
Pipeline #6939 passed with stages
in 42 seconds
......@@ -53,7 +53,7 @@ define hist1d_confidence (lo, hi, h)
if (qualifier_exists("index"))
return jj,ii;
return hi[jj], lo[ii];
return lo[jj], hi[ii];
}
%}}}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment