scipy.integrate package in SCIPY

0

Example of Single Integration in SCIPY:- 
import scipy.integrate
from numpy import exp
f= lambda x:x*x
i = scipy.integrate.quad(f, 0, 1)
print(i)
Example of double integration ion SCIPY:-

Post a Comment

0Comments

POST Answer of Questions and ASK to Doubt

Post a Comment (0)