From 127827147b0832c498aa3c5582495553ca77d0da Mon Sep 17 00:00:00 2001 From: mcditooss Date: Thu, 14 Nov 2024 00:42:44 +0100 Subject: [PATCH] documentation error --- qutip/core/environment.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qutip/core/environment.py b/qutip/core/environment.py index c6427d2037..47b849edeb 100644 --- a/qutip/core/environment.py +++ b/qutip/core/environment.py @@ -186,7 +186,7 @@ def from_correlation_function( The correlation function. When using a function the signature should be - C(t, *args) -> array_like + C(t, \*args) -> array_like where ``t`` is time and ``args`` is a tuple containing the other parameters of the function. @@ -231,7 +231,7 @@ def from_power_spectrum( S : callable or array_like The power spectrum. When using a function the signature should be - S(w, *args) -> array_like + S(w, \*args) -> array_like where ``w`` is the frequency and ``args`` is a tuple containing the other parameters of the function. @@ -280,7 +280,7 @@ def from_spectral_density( J : callable or array_like The spectral density. When using a function the signature should be - J(w, *args) -> array_like + J(w, \*args) -> array_like where ``w`` is the frequency and ``args`` is a tuple containing the other parameters of the function.