From 4b522d3beed591502a3d13bb3a585092154e48f6 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 17 Mar 2014 14:57:33 +0000 Subject: [PATCH] PlotData: fix in column indices --- lib/Plot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Plot.cpp b/lib/Plot.cpp index 7628787..1d67f3a 100644 --- a/lib/Plot.cpp +++ b/lib/Plot.cpp @@ -104,8 +104,8 @@ PlotData::PlotData(const XYStatData &data, const Index i, const Index j) d.col(0) = data.x(i); d.col(2) = data.y(j); d.col(1) = data.xxVar(i, i).diagonal().array().sqrt(); - d.col(3) = data.yyVar(i, i).diagonal().array().sqrt(); - usingCmd = (data.isXExact(i)) ? "u 1:3:4 w yerr" : "u 1:2:3:4 w xyerr"; + d.col(3) = data.yyVar(j, j).diagonal().array().sqrt(); + usingCmd = (data.isXExact(i)) ? "u 1:3:4 w yerr" : "u 1:3:2:4 w xyerr"; tmpFileName = dumpToTmpFile(d); pushTmpFile(tmpFileName); setCommand("'" + tmpFileName + "' " + usingCmd);