mirror of
https://github.com/vale981/hopsflow
synced 2025-03-05 08:51:37 -05:00
support unequal sample sizes when dividing ensemble values
This commit is contained in:
parent
1ed2d65605
commit
3890771074
1 changed files with 8 additions and 4 deletions
|
@ -306,14 +306,18 @@ class EnsembleValue:
|
||||||
if len(self) != len(other):
|
if len(self) != len(other):
|
||||||
raise RuntimeError("Can only multiply values of equal length.")
|
raise RuntimeError("Can only multiply values of equal length.")
|
||||||
|
|
||||||
left = self._value
|
left = copy.deepcopy(self._value)
|
||||||
right = other._value
|
right = copy.deepcopy(other._value)
|
||||||
|
|
||||||
out = []
|
out = []
|
||||||
|
|
||||||
for left_i, right_i in zip(left, right):
|
for left_i, right_i in zip(left, right):
|
||||||
if left_i[0] != right_i[0]:
|
if left_i[0] < right_i[0]:
|
||||||
raise RuntimeError("Can only divide equal sample counts.")
|
right_i[2] *= np.sqrt(right_i[0] / left_i[0])
|
||||||
|
right_i[0] = left_i[0]
|
||||||
|
if left_i[0] > right_i[0]:
|
||||||
|
left_i[2] *= np.sqrt(left_i[0] / right_i[0])
|
||||||
|
left_i[0] = right_i[0]
|
||||||
|
|
||||||
out.append(
|
out.append(
|
||||||
(
|
(
|
||||||
|
|
Loading…
Add table
Reference in a new issue