Dynamic Causal Modelling - Units of Parameters edit

In general, the coupling parameters in DCM (matrices A,B,C) are in units of hertz. They are rate constants, defining the rates of change within or between regions. Certain parameters, however, are log scaling parameters - this refers to a transformation used to force these parameters to take positive or negative values.

The notion of rate constants is most easily illustrated for the self-connections - the diagonal entries of the A matrix.

Self-connections edit

Imagine a one region DCM with a single inhibitory self-connection (i.e. a single value in matrix A). The level of activity in this region (its state) is denoted  . This system can be modelled as a first-order linear differential equation:

 

The parameter   controls the rate of decay in the region. To see why, we can consider the half-life of the system.

 
Exponential decay. A large 'a' parameter (red) will cause faster decay than a small 'a' parameter (green)

Relationship with half-life edit

The half-life   is the time at which activity in our example region has fallen to half its starting level. From the definition above, we know that we can calculate the activity at time  :

 

We can re-arrange this expression to find the value of   and  :

 

Thus,   is inversely proportional to the half-life  . The more negative the value of  , the quicker activity decays in this region.

Constraining the sign edit

Sometimes we need to force the sign of a coupling parameter to be positive or negative. For instance, we constrain the self-connection on each region,  , to be negative - ensuring that it decays and the system reaches stability. Another example is two-state DCM, which explicitly represents particular connections as being excitatory or inhibitory. Typically, the approach taken is to treat the parameters as being the logarithm of the coupling strength, rather than the coupling strength itself. Then within the code of the model, its value is exponentiated prior to use, and can be made positive:

a = exp(A);

or negative:

a = -exp(A);

It is important when interpreting the results, therefore, to know which parameters are simple coupling strengths and which are log parameters. This depends on which DCM model you use, and these are laid out below.

Specific Models edit

One-state DCM for fMRI edit

This is the standard or 'vanilla' DCM for fMRI. All connections in the A,B,C and D matrices are coupling parameters in units of Hz, with the exception of the self-connections on the A-matrix, which are log scaling parameters. The intention here is two-fold - to force these to always be negative, and to set a default strength of -0.5Hz when the value in the A-matrix is zero.

To achieve this, the values for the self-connections in the A-matrix go through the following transformation within the model:

 

Where   is the value that appears in the A-matrix and   is the value used in the model.

Two-state DCM for fMRI edit

In this model, all values in the A and B (but not C) matrix are log scaling parameters.