How to Solve NameError: name 'quad' is not defined -- scipy

Solution: Import the 'quad' module

To Solve the error, add the following line to the top of your code.

from scipy.integrate import quad

 

For more information:
Python scipy quad