Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion heracles/twopoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@ def mixing_matrices(

# wrap in result array type
# second to last axis is the *output* ell axis
mm = Result(mm, spin=(spin1, spin2), axis=-2)
ell = np.arange(mm.shape[-2])
mm = Result(mm, spin=(spin1, spin2), ell=ell, axis=-2)

if bins is not None:
mm = binned(mm, bins, weights)
Expand Down
Loading