Skip to content
Snippets Groups Projects
Commit 70f1cf3c authored by Matthew Pitkin's avatar Matthew Pitkin
Browse files

grid.py: use updated implementation of logtrapzexp

parent ad3d548f
No related branches found
No related tags found
1 merge request!983Allow logtrapzexp to work on a non-uniform grid
......@@ -191,8 +191,10 @@ class Grid(object):
places = self.sample_points[name]
if len(places) > 1:
dx = np.diff(places)
out = np.apply_along_axis(
logtrapzexp, axis, log_array, places[1] - places[0])
logtrapzexp, axis, log_array, dx
)
else:
# no marginalisation required, just remove the singleton dimension
z = log_array.shape
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment