From eef8e86929fb2353a8864a52509bc5cc3bc7eac9 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Mon, 16 Dec 2024 09:34:11 -0500 Subject: [PATCH] Reword --- src/sdr/_probability.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sdr/_probability.py b/src/sdr/_probability.py index 802267f29..5e4adbf65 100644 --- a/src/sdr/_probability.py +++ b/src/sdr/_probability.py @@ -120,7 +120,7 @@ def add_iid_rvs( for sufficiently large $n$. Examples: - Compute the distribution of the sum of two normal distributions. + Compute the distribution of the sum of two normal random variables. .. ipython:: python @@ -136,9 +136,9 @@ def add_iid_rvs( plt.legend(); \ plt.xlabel("Random variable"); \ plt.ylabel("Probability density"); \ - plt.title("Sum of two normal distributions"); + plt.title("Sum of two normal random variables"); - Compute the distribution of the sum of three Rayleigh distributions. + Compute the distribution of the sum of three Rayleigh random variables. .. ipython:: python @@ -154,9 +154,9 @@ def add_iid_rvs( plt.legend(); \ plt.xlabel("Random variable"); \ plt.ylabel("Probability density"); \ - plt.title("Sum of three Rayleigh distributions"); + plt.title("Sum of three Rayleigh random variables"); - Compute the distribution of the sum of four Rician distributions. + Compute the distribution of the sum of four Rician random variables. .. ipython:: python @@ -172,7 +172,7 @@ def add_iid_rvs( plt.legend(); \ plt.xlabel("Random variable"); \ plt.ylabel("Probability density"); \ - plt.title("Sum of four Rician distributions"); + plt.title("Sum of four Rician random variables"); Group: probability