Python Tutorial #7

sigma = np.empty([Npts]) # create an empty numpy array sigma.fill(0.05) # uncertainties are placed in array sigma # "fill" sets all elements of the array to be the same number ................
................