+15 XP
Gym: Code a Gaussian
Question 1 of 4
The bell shape comes from raising e to a negative squared term. Fill in the numpy function for the exponential.
python
bell = np.(-(x - mu)**2 / (2 * sigma**2))
Gym: Code a Gaussian
Question 1 of 4
The bell shape comes from raising e to a negative squared term. Fill in the numpy function for the exponential.
bell = np.(-(x - mu)**2 / (2 * sigma**2))