Skip to content

Commit

Permalink
fix operator for multicoilmultiecho
Browse files Browse the repository at this point in the history
  • Loading branch information
aTrotier committed Jun 26, 2023
1 parent 86dbb0d commit 36d32de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MRIOperators/src/EncodingOp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ function encodingOp_multiEcho_parallel(acqData::AcquisitionData{T,D}, shape::NTu
# fourier operators
ft = encodingOps_simple(acqData, shape; kargs...)
S = SensitivityOp(reshape(smaps,:,numChan),numContrasts(acqData))
return DiagOp(repeat(ft, inner=numChan)...) S
ops2 = [copy(ft[n]) for j=1:numChan,n=eachindex(ft)]
return DiagOp(ops2...) S
end

###################################
Expand Down

0 comments on commit 36d32de

Please sign in to comment.