Skip to content

Commit

Permalink
fix foopsi error #353
Browse files Browse the repository at this point in the history
  • Loading branch information
j-friedrich committed Aug 28, 2018
1 parent bb7bb95 commit f47522f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caiman/source_extraction/cnmf/oasis.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def constrained_oasisAR1(np.ndarray[SINGLE, ndim=1] y, SINGLE g, SINGLE sn,
thresh = thresh / decimate / decimate
T = len(y)
# explicit kernel, useful for constructing solution
h = np.exp(log(g) * np.arange(T, dtype=np.float32))
h = g ** np.arange(T, dtype=np.float32)
c = np.empty(T, dtype=np.float32)
lam = 0 # sn/sqrt(1-g*g)

Expand Down

0 comments on commit f47522f

Please sign in to comment.