Skip to content

Commit

Permalink
Fix bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Jul 28, 2024
1 parent fb65aaa commit 4ca797b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdr/_probability.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def multiply_distributions(
X = scipy.stats.norm(loc=-1, scale=0.5)
Y = scipy.stats.norm(loc=2, scale=1.5)
x = np.linspace(-5, 10, 1_001)
x = np.linspace(-15, 10, 1_001)
@savefig sdr_multiply_distributions_1.png
plt.figure(); \
Expand Down

0 comments on commit 4ca797b

Please sign in to comment.