Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Apr 3, 2024
1 parent 19d8301 commit 65af01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fdasrsf/geometry.py
Expand Up @@ -60,7 +60,7 @@ def gam_to_h(gam, smooth=True):
if gam.ndim == 1:
if smooth:
gamtmp = smooth_data(gam[:, newaxis], 25)
psi = log(gradient(gamtmp[:,0], binsize))
psi = log(gradient(gamtmp[:, 0], binsize))
h = psi - trapezoid(psi, time)
else:
psi = log(gradient(gam, binsize))
Expand Down

0 comments on commit 65af01f

Please sign in to comment.