Skip to content

Commit

Permalink
Increase number of samples
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Jul 28, 2024
1 parent f1cb73c commit 42c2b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/probability/test_multiply_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_rayleigh_rician():

def _verify(X, Y):
# Empirically compute the distribution
z = X.rvs(100_000) * Y.rvs(100_000)
z = X.rvs(250_000) * Y.rvs(250_000)
hist, bins = np.histogram(z, bins=51, density=True)
x = bins[1:] - np.diff(bins) / 2

Expand Down

0 comments on commit 42c2b70

Please sign in to comment.