@@ -245,32 +245,16 @@ def bfactor(self, mode_subset=None, tem=None,
245245 )
246246
247247 def dcc (self , mode_subset = None , norm = True , tem = None , tem_factors = K_B ):
248- """
248+ r """
249249 Computes the normalized *dynamic cross-correlation* between
250- nodes of the GNM. The DCC for a nodepair :math:`ij` is computed as:
251-
252- .. math::
253-
254- DCC_{ij} = \f rac{3 k_B T}{\gamme} \sum_k^L \left[ \f rac{\v ec{u}_k \cdot \v ec{u}_k^T}{\lambda_k} \r ight]_{ij}
255-
256- with :math:`\lambda`. and :math:`\v ec{u}`. as
257- Eigenvalues and Eigenvectors corresponding to mode :math:`k`. of
258- the modeset :math:`L`.
259-
260- DCCs can be normalized to MSFs exhibited by two compared nodes
261- following:
262-
263- .. math::
264-
265- nDCC_{ij} = \f rac{DCC_{ij}}{[\DCC_{ii} DCC_{jj}]^{1/2}}
250+ nodes of the GNM.
266251
267252 The DCC is a measure for the correlation in fluctuations
268253 exhibited by a given pair of nodes. If normalized, pairs with
269254 correlated fluctuations (same phase and period),
270255 anticorrelated fluctuations (opposite phase, same period)
271256 and non-correlated fluctuations are assigned (normalized)
272257 DCC values of 1, -1 and 0 respectively.
273-
274258 For results consistent with MSFs, temperature-weighted
275259 absolute values can be computed (only relevant if results
276260 are not normalized).
@@ -293,12 +277,31 @@ def dcc(self, mode_subset=None, norm=True, tem=None, tem_factors=K_B):
293277 If tem is None, no temperature scaling is conducted.
294278 tem_factors : int, float, optional
295279 Factors included in temperature weighting
296- (with K_B as preset).
280+ (with :math:`k_B` as preset).
297281
298282 Returns
299283 -------
300284 dcc : ndarray, shape=(n, n), dtype=float
301285 DCC values for ENM nodes.
286+
287+ Notes
288+ -----
289+ The DCC for a nodepair :math:`ij` is computed as:
290+
291+ .. math::
292+
293+ DCC_{ij} = \frac{3 k_B T}{\gamma} \sum_k^L \left[ \frac{\vec{u}_k \cdot \vec{u}_k^T}{\lambda_k} \right]_{ij}
294+
295+ with :math:`\lambda` and :math:`\vec{u}` as
296+ Eigenvalues and Eigenvectors corresponding to mode :math:`k` of
297+ the modeset :math:`L`.
298+
299+ DCCs can be normalized to MSFs exhibited by two compared nodes
300+ following:
301+
302+ .. math::
303+
304+ nDCC_{ij} = \frac{DCC_{ij}}{[DCC_{ii} DCC_{jj}]^{1/2}}
302305 """
303306 return nma .dcc (
304307 self , mode_subset , norm , tem , tem_factors
0 commit comments