Changed alpha and beta descriptors
This commit is contained in:
parent
ce98ba0026
commit
1d9d493063
2 changed files with 2 additions and 2 deletions
|
|
@ -203,4 +203,4 @@ short_range_expiration_distributions = {
|
|||
|
||||
|
||||
# Derived from Fig 8 a) "stand-stand" in https://www.mdpi.com/1660-4601/17/4/1445/htm
|
||||
short_range_distances = Beta(alpha=1.4342766632654418, beta=27.49916410927064)
|
||||
short_range_distances = Beta(alpha=0.588715, beta=1.50214)
|
||||
|
|
@ -144,7 +144,7 @@ class Beta(SampleableDistribution):
|
|||
self.beta = beta
|
||||
|
||||
def generate_samples(self, size: int) -> float_array_size_n:
|
||||
return beta.rvs(a = self.alpha, b = self.beta, loc=0.5, scale=7, size=size)
|
||||
return beta.rvs(a = self.alpha, b = self.beta, loc=0.5, scale=(2 - 0.5), size=size)
|
||||
|
||||
|
||||
_VectorisedFloatOrSampleable = typing.Union[
|
||||
|
|
|
|||
Loading…
Reference in a new issue