Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWhitaker committed Jul 19, 2019
1 parent 3156b38 commit f984ebc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sequences.jl
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function mese(spin::AbstractSpin, TR::Real, TE::Real, nechoes::Integer;
αex = αex, αinv = αinv), spins) # [nspins][nechoes]

# Find the average signal for each echo
signal = map(s -> sum(s) / nechoes, signals)
signal = sum(signals) / nspins

return signal

Expand Down

0 comments on commit f984ebc

Please sign in to comment.