Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Scipy integrate.romb() method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

With the help of scipy.integrate.romb() method, we can get the romberg integration using samples of a function from limit a to b by using scipy.integrate.romb() method.

Syntax : scipy.integrate.romb(y, dx, axis, show)
Return : Return the romberg integration of a sample.

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




# import numpy and scipy.integrate
import numpy as np
from scipy import integrate
x = np.arange(3, 12)
  
# using scipy.integrate.romb() method
gfg = integrate.romb(x)
  
print(gfg)

Output :

56.0

Example #2 :




# import numpy and scipy.integrate
import numpy as np
from scipy import integrate
x = np.arange(3, 12)
y = np.cos(np.power(x, 3.5))
  
# using scipy.integrate.romb() method
gfg = integrate.romb(y)
  
print(gfg)

Output :

-3.5943771512643674

My Personal Notes arrow_drop_up
Last Updated : 23 Jan, 2020
Like Article
Save Article
Similar Reads
Related Tutorials