Skip to content

Commit

Permalink
FIX: change use of print for py3 compatibility (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteofrigo authored and rutgerfick committed Jul 17, 2019
1 parent ac9aa31 commit 5f03f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmipy/utils/spherical_mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ def estimate_spherical_mean_shell(
# Integral of Y00 spherical harmonic is 2 * np.sqrt(np.pi)
# Multiplication results in normalization of 1 / (2 * np.sqrt(np.pi))
E_mean = E_sh_coef[0] / (2 * np.sqrt(np.pi))
print 'emean', E_mean
print('emean', E_mean)
return E_mean

0 comments on commit 5f03f42

Please sign in to comment.