Skip to content

Commit

Permalink
Add t1tissue term to multi-delay CBF formula (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Jul 31, 2024
1 parent 39d5853 commit 1703fe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aslprep/utils/cbf.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,8 +747,8 @@ def estimate_cbf_pcasl_multipld(

pld_num_factor = num_factor * mean_deltam_by_pld[:, i_pld] * np.exp(att_arr / t1blood)
pld_denom_factor = denom_factor * (
np.exp(-np.maximum(pld_by_voxel - att_arr, 0))
- np.exp(-np.maximum(tau_for_pld + pld_by_voxel - att_arr, 0))
np.exp(-(np.maximum(pld_by_voxel - att_arr, 0) / t1tissue))
- np.exp(-(np.maximum(tau_for_pld + pld_by_voxel - att_arr, 0) / t1tissue))
)
cbf_by_pld[:, i_pld] = pld_num_factor / pld_denom_factor

Expand Down

0 comments on commit 1703fe2

Please sign in to comment.