Skip to content

Commit 2dc667d

Browse files
authored
gh-404: Mixing matrix missing ell argument (#416)
1 parent 942f831 commit 2dc667d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

heracles/twopoint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,8 @@ def mixing_matrices(
392392

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

397398
if bins is not None:
398399
mm = binned(mm, bins, weights)

0 commit comments

Comments
 (0)