You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dipolarkernel the dipolar pathways are specified as a list of amplitude, refocusing time, and harmonic parameters:
pathinfo= [[],[],[]]
pathinfo[0] = [lam0, nan, nan] # unmodulated part, gives offsetpathinfo[1] = [lama, 0, 1] # main modulation, refocusing at time zeropathinfo[2] = [lam21, tau2, 1] # 2+1 modulation, refocusing at time tau2
for the unmodulated pathway the refocusing time and harmonic must be specified as nan-values. This is a leftover from the MATLAB interface. Since the Python interface is list-based, the unmodulated pathway could be specified as a list with just the amplitude:
pathinfo= [[],[],[]]
pathinfo[0] = [lam0] # unmodulated part, gives offsetpathinfo[1] = [lama, 0, 1] # main modulation, refocusing at time zeropathinfo[2] = [lam21, tau2, 1] # 2+1 modulation, refocusing at time tau2
The text was updated successfully, but these errors were encountered:
In
dipolarkernel
the dipolar pathways are specified as a list of amplitude, refocusing time, and harmonic parameters:for the unmodulated pathway the refocusing time and harmonic must be specified as
nan
-values. This is a leftover from the MATLAB interface. Since the Python interface is list-based, the unmodulated pathway could be specified as a list with just the amplitude:The text was updated successfully, but these errors were encountered: