Dev/interpolation documentation (#255)
All checks were successful
Build on RHEL8 / build (push) Successful in 3m5s
Build on RHEL9 / build (push) Successful in 3m21s

- added transform_eta_values for easier debugging more control for the
user
- updated Documentation
This commit is contained in:
2025-12-16 13:06:28 +01:00
committed by GitHub
parent 80a2b02345
commit fb95e518b4
14 changed files with 240 additions and 120 deletions

View File

@@ -20,8 +20,8 @@ Interpolator::Interpolator(NDView<double, 3> etacube, NDView<double, 1> xbins,
m_ietax = NDArray<double, 3>(etacube);
m_ietay = NDArray<double, 3>(etacube);
// prefix sum - conditional CDF
// TODO: etacube should have different strides energy should come first
// prefix sum - conditional CDF
for (ssize_t i = 0; i < m_ietax.shape(0); i++) {
for (ssize_t j = 0; j < m_ietax.shape(1); j++) {
for (ssize_t k = 0; k < m_ietax.shape(2); k++) {