mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 11:33:42 +02:00
chore: reformat in _compute_drho.
This commit is contained in:
parent
8bc204fc31
commit
854b46c5b4
1 changed files with 2 additions and 1 deletions
|
@ -290,7 +290,8 @@ class Obs:
|
||||||
|
|
||||||
def _compute_drho(i):
|
def _compute_drho(i):
|
||||||
tmp = (self.e_rho[e_name][i + 1:w_max]
|
tmp = (self.e_rho[e_name][i + 1:w_max]
|
||||||
+ np.concatenate([self.e_rho[e_name][i - 1:None if i - w_max // 2 < 0 else 2 * (i - w_max // 2):-1], self.e_rho[e_name][1:max(1, w_max - 2 * i)]])
|
+ np.concatenate([self.e_rho[e_name][i - 1:None if i - w_max // 2 < 0 else 2 * (i - w_max // 2):-1],
|
||||||
|
self.e_rho[e_name][1:max(1, w_max - 2 * i)]])
|
||||||
- 2 * self.e_rho[e_name][i] * self.e_rho[e_name][1:w_max - i])
|
- 2 * self.e_rho[e_name][i] * self.e_rho[e_name][1:w_max - i])
|
||||||
self.e_drho[e_name][i] = np.sqrt(np.sum(tmp ** 2) / e_N)
|
self.e_drho[e_name][i] = np.sqrt(np.sum(tmp ** 2) / e_N)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue