mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
fix: bug in boot matmul fixed
This commit is contained in:
parent
92d3e3d882
commit
99afa0f677
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ def boot_matmul(a, b):
|
|||
def export_boot(obs):
|
||||
ret = np.zeros(obs.N + 1)
|
||||
ret[0] = obs.value
|
||||
ret[1:] = proj @ obs.deltas[name]
|
||||
ret[1:] = proj @ (obs.deltas[name] + obs.r_values[name])
|
||||
return ret
|
||||
|
||||
def import_boot(boots):
|
||||
|
|
Loading…
Add table
Reference in a new issue