From 2326725756ad7b4c54e69f059b9dc77be3bd3f5a Mon Sep 17 00:00:00 2001 From: jgoedeke Date: Thu, 23 Jan 2025 15:07:12 +0000 Subject: [PATCH] bugfix: set `xprec` to 9 for XY datasets --- lib/imc_channel.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/imc_channel.hpp b/lib/imc_channel.hpp index 9219a0b..452284b 100644 --- a/lib/imc_channel.hpp +++ b/lib/imc_channel.hpp @@ -508,6 +508,8 @@ namespace imc throw std::runtime_error("x and y data have different number of values"); } + xprec_ = 9; + process_data(xdata_, xnum_values, xdatatp_, xCSbuffer); process_data(ydata_, ynum_values, ydatatp_, yCSbuffer); }