Using Python like Matlab and Mathematica

In [5]: # First create Numpy array of x values using the "linspace" function, # creating an array from -10 to 10 with 100 evenly-spaced points x = np.linspace(-10,10,100) # Next, compute the y values as a function of x using the formula for a Gaussian cu rve # Note that I am using the Numpy exponential function, so np.exp(stuff) is the same as ... ................
................