Skip to content

Commit

Permalink
Fix(rema): Has to be transposed
Browse files Browse the repository at this point in the history
  • Loading branch information
op3 committed May 22, 2024
1 parent fb03d4b commit 163faa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boris/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def get_rema(
return rema[
hist.loc(left) : hist.loc(right) + 1 : hist.rebin(binning_factor),
hist.loc(left) : hist.loc(right) + 1 : hist.rebin(binning_factor),
]
].T


def interpolate_grid(grid: np.ndarray, point: float) -> list[tuple[int, float, float]]:
Expand Down

0 comments on commit 163faa1

Please sign in to comment.