mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
fix: adjusted maximal value for rho in test_gamma_method_irregular. (#188)
This commit is contained in:
parent
dc73456759
commit
095f7c8a46
1 changed files with 1 additions and 1 deletions
|
@ -762,7 +762,7 @@ def test_gamma_method_irregular():
|
||||||
N = 15
|
N = 15
|
||||||
for i in range(10):
|
for i in range(10):
|
||||||
arr = np.random.normal(1, .2, size=N)
|
arr = np.random.normal(1, .2, size=N)
|
||||||
for rho in .1 * np.arange(20):
|
for rho in .05 * np.arange(20):
|
||||||
carr = gen_autocorrelated_array(arr, rho)
|
carr = gen_autocorrelated_array(arr, rho)
|
||||||
a = pe.Obs([carr], ['a'])
|
a = pe.Obs([carr], ['a'])
|
||||||
a.gm()
|
a.gm()
|
||||||
|
|
Loading…
Add table
Reference in a new issue