Commit 843f65c6 authored by Laurens Mackay's avatar Laurens Mackay

Variance now displayed as exponential, as it is often very big or small.

parent 2c92489b
......@@ -321,7 +321,7 @@ void LinechartWidget::refresh()
for (l = curveVariances->begin(); l != curveVariances->end(); ++l)
{
// Variance
str.sprintf("%+.5f", activePlot->getVariance(l.key()));
str.sprintf("%.2e", activePlot->getVariance(l.key()));
l.value()->setText(str);
}
}
......
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