Skip to content

Commit

Permalink
One more prod
Browse files Browse the repository at this point in the history
  • Loading branch information
thangleiter committed May 13, 2024
1 parent 81bbfbe commit 14c9980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter_functions/analytic.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def CPMG(z, n):

def CDD(z, g):
return 2**(2*g + 1)*np.sin(z/2**(g + 1))**2 *\
np.product([np.sin(z/2**(k + 1))**2 for k in range(1, g+1)], axis=0)
np.prod([np.sin(z/2**(k + 1))**2 for k in range(1, g+1)], axis=0)


def UDD(z, n):
Expand Down

0 comments on commit 14c9980

Please sign in to comment.