Ad Code

✨🎆 JOIN MERN, JAVA, PYTHON, AI, DEVOPS, SALESFORCE Courses 🎆✨

Get 100% Placement Oriented Program CLICK to new more info click

scipy.integrate package in SCIPY


It is used to calculate mathematical integration based formula.

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

0 Comments