From c6bc8c9af2fa15f921e55b41e555302bbc083e8d Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 13 Dec 2016 10:29:37 +0000 Subject: [PATCH] XYSampleData: variance matrix compute fix --- lib/XYSampleData.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/XYSampleData.cpp b/lib/XYSampleData.cpp index bd47452..ecb0811 100644 --- a/lib/XYSampleData.cpp +++ b/lib/XYSampleData.cpp @@ -253,6 +253,7 @@ void XYSampleData::setDataToSample(const Index s) const XYStatData & XYSampleData::getData(void) { setDataToSample(central); + computeVarMat(); return data_; }