bugfix: set xprec to 9 for XY datasets

This commit is contained in:
jgoedeke 2025-01-23 15:07:12 +00:00
parent 59de48424e
commit 2326725756

View File

@ -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);
}