mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-16 07:10:24 +01:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
cc000f21ac
3 changed files with 8 additions and 0 deletions
4
.github/CODEOWNERS
vendored
Normal file
4
.github/CODEOWNERS
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
* @fjosw
|
||||
/pyerrors/covobs.py @s-kuberski
|
||||
/pyerrors/input/json.py @s-kuberski
|
||||
/pyerrors/input/dobs.py @s-kuberski
|
|
@ -124,6 +124,8 @@ class Corr:
|
|||
for j in range(self.N):
|
||||
item[i, j].gamma_method(**kwargs)
|
||||
|
||||
gm = gamma_method
|
||||
|
||||
def projected(self, vector_l=None, vector_r=None, normalize=False):
|
||||
"""We need to project the Correlator with a Vector to get a single value at each timeslice.
|
||||
|
||||
|
|
|
@ -46,6 +46,8 @@ class Fit_result(Sequence):
|
|||
"""Apply the gamma method to all fit parameters"""
|
||||
[o.gamma_method(**kwargs) for o in self.fit_parameters]
|
||||
|
||||
gm = gamma_method
|
||||
|
||||
def __str__(self):
|
||||
my_str = 'Goodness of fit:\n'
|
||||
if hasattr(self, 'chisquare_by_dof'):
|
||||
|
|
Loading…
Add table
Reference in a new issue