Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-04-19 12:14:30 +00:00
commit b74ce4a070

View file

@ -621,7 +621,7 @@ class Corr:
raise Exception('Unknown variant.') raise Exception('Unknown variant.')
def fit(self, function, fitrange=None, silent=False, **kwargs): def fit(self, function, fitrange=None, silent=False, **kwargs):
"""Fits function to the data r'''Fits function to the data
Parameters Parameters
---------- ----------
@ -629,10 +629,12 @@ class Corr:
function to fit to the data. See fits.least_squares for details. function to fit to the data. See fits.least_squares for details.
fitrange : list fitrange : list
Two element list containing the timeslices on which the fit is supposed to start and stop. Two element list containing the timeslices on which the fit is supposed to start and stop.
Caution: This range is inclusive as opposed to standard python indexing.
`fitrange=[4, 6]` corresponds to the three entries 4, 5 and 6.
If not specified, self.prange or all timeslices are used. If not specified, self.prange or all timeslices are used.
silent : bool silent : bool
Decides whether output is printed to the standard output. Decides whether output is printed to the standard output.
""" '''
if self.N != 1: if self.N != 1:
raise Exception("Correlator must be projected before fitting") raise Exception("Correlator must be projected before fitting")