dcmri.prop_comp#

dcmri.prop_comp(T, t)[source]#

Propagator or transit time distribution of a compartment.

See section Compartment for more detail.

Parameters:
  • T (float) – mean transit time of the compartment. Any non-negative value is allowed, including \(T=0\) and \(T=\infty\), in which case the compartment is a trap.

  • t (array_like) – time points where the propagator is calculated, in the same units as T.

Returns:

propagator as a 1D array.

Return type:

numpy.ndarray

Example

>>> import dcmri as dc
>>> t = [0,3,4,6]
>>> dc.prop_comp(5,t)
array([0.2       , 0.10976233, 0.08986579, 0.06023884])