mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 19:43:41 +02:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
9b1f60c00e
6 changed files with 32 additions and 16 deletions
|
@ -58,12 +58,16 @@ def test_modify_correlator():
|
|||
for pad in [0, 2]:
|
||||
corr = pe.Corr(corr_content, padding=[pad, pad])
|
||||
corr.roll(np.random.randint(100))
|
||||
corr.deriv(variant="forward")
|
||||
corr.deriv(variant="symmetric")
|
||||
corr.deriv(variant="forward")
|
||||
corr.deriv(variant="backward")
|
||||
corr.deriv(variant="improved")
|
||||
corr.deriv(variant="log")
|
||||
corr.deriv().deriv()
|
||||
corr.second_deriv(variant="symmetric")
|
||||
corr.second_deriv(variant="big_symmetric")
|
||||
corr.second_deriv(variant="improved")
|
||||
corr.second_deriv(variant="log")
|
||||
corr.second_deriv().second_deriv()
|
||||
|
||||
for i, e in enumerate(corr.content):
|
||||
|
|
|
@ -18,3 +18,7 @@ def test_obs_errorbar():
|
|||
pe.errorbar(x_obs, y_obs, marker="x", ms=2, xerr=xerr, yerr=yerr)
|
||||
|
||||
plt.close('all')
|
||||
|
||||
|
||||
def test_print_config():
|
||||
pe.print_config()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue