Python | Scipy integration.dblquad () метод

Опубликовано: 29 Марта, 2022

With the help of scipy.integrate.dblquad() method, we can get the double integration of a given function from limit a to b by using scipy.integrate.dblquad() method.

Syntax : scipy.integrate.dblquad(func, a, b)

Return : Return the double integrated value of a polynomial.

Example #1 :
In this example we can see that by using scipy.integrate.dblquad() method, we are able to get the double integration of a polynomial from limit a to b by using this method.

# import scipy.integrate.dblquad
from scipy import integrate
  
gfg = lambda y, x: x * y**2
  
# using scipy.integrate.dblquad() method
geek = integrate.dblquad(gfg, 0, 3, lambda x: 0, lambda x: 1)
  
print(geek)

Выход :

1.4999999999999998

Example #2 :

# import scipy.integrate.dblquad
from scipy import integrate
gfg = lambda y, x: x * y**2 + 2 * x*y + 4
  
# using scipy.integrate.dblquad() method
geek = integrate.dblquad(gfg, 1, 4, lambda x: 0, lambda x: 1)
  
print(geek)

Выход :

21.999999999999996

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.