From 9da29177b9f810b9ed6caa8791cb382c8466e9ea Mon Sep 17 00:00:00 2001 From: Kirill Shmilovich Date: Tue, 22 Mar 2022 14:19:27 -0500 Subject: [PATCH] Update _koopman.py --- deeptime/decomposition/_koopman.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deeptime/decomposition/_koopman.py b/deeptime/decomposition/_koopman.py index 443f34fbe..16deb5f01 100644 --- a/deeptime/decomposition/_koopman.py +++ b/deeptime/decomposition/_koopman.py @@ -40,7 +40,7 @@ def __init__(self, koopman_matrix: np.ndarray, @property def operator(self) -> np.ndarray: - r""" The operator :math:`K` so that :math:`\mathbb{E}[g(x_{t+\tau}] = K^\top \mathbb{E}[f(x_t)]` in transformed + r""" The operator :math:`K` so that :math:`\mathbb{E}[g(x_{t+\tau})] = K^\top \mathbb{E}[f(x_t)]` in transformed bases. """ return self._koopman_matrix @@ -169,9 +169,9 @@ class CovarianceKoopmanModel(TransferOperatorModel): with norms <= epsilon were cut off. The remaining number of eigenvalues together with the value of `dim` define the effective output dimension. instantaneous_obs : Callable, optional, default=identity - Transforms the current state :math:`x_t` to :math:`\chi_0(x_t)`. Defaults to `\chi_0(x) = x`. + Transforms the current state :math:`x_t` to :math:`\chi_0(x_t)`. Defaults to :math:`\chi_0(x) = x`. timelagged_obs : Callable, optional, default=identity - Transforms the future state :math:`x_{t+\tau}` to :math:`\chi_1(x_{t+\tau})`. Defaults to `\chi_1(x) = x`. + Transforms the future state :math:`x_{t+\tau}` to :math:`\chi_1(x_{t+\tau})`. Defaults to :math:`\chi_1(x) = x`. """ def __init__(self, instantaneous_coefficients, singular_values, timelagged_coefficients, cov,