I have function f(x) and I want to integrate the function from 0 to some point x in the interval (0,2). I know how to solve the problem in mathematica, however I don’t know how to solve this problem in python.
Mathematica
JavaScript
x
5
1
OM=0.3
2
OL=0.7
3
f[x_] := ((1 + x)^3 OM + OL)^(-1/2);
4
Plot[NIntegrate[f[x], {x, 0, z2}], {z2, 0, 2}]
5
My code in python:
JavaScript
1
14
14
1
import numpy as np
2
import matplotlib.pyplot as plt
3
from scipy import integrate
4
5
y = np.linspace(0, 2, 20)
6
Om=0.3
7
Ol=1-Om
8
9
def H(x):
10
return (Om*(1+x)**3 +Ol)**(-1./2)
11
12
#Integral from a single point in the inverval
13
print quad(H,0,2)
14
How can I do exactly the same in python?
Advertisement
Answer
JavaScript
1
2
1
[integrate.quad(H, 0, t)[0] for t in y]
2
quad
s inputs are f, a, b
, here you do integration from 0
to t
for all t
in y
.