Skip to content

Commit

Permalink
Fix missing index
Browse files Browse the repository at this point in the history
  • Loading branch information
kamesy committed May 5, 2023
1 parent 36fa8e4 commit d718b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/multi_echo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ function _multi_echo_linear_fit!(
= wt * x[1]
= wt * Y[I,1]
for t in 2:NT
wt = W[t]
wt = W[I,t]
w += wt
= muladd(wt, x[t], x̄)
= muladd(wt, Y[I,t], ȳ)
Expand Down

0 comments on commit d718b72

Please sign in to comment.