This is my python code
JavaScript
x
17
17
1
import numpy as np
2
from scipy.integrate import quad, trapz, simps
3
import math
4
5
def f(x):
6
return math.exp(-(x**2/2))/math.sqrt(2*math.pi)
7
8
result, error = quad(f, 0, np.inf)
9
print("{:f} {:g}".format(result, error))
10
11
x = np.arange(0, 99999, 0.001)
12
13
fun = f(x)
14
15
res1 = trapz(fun, x)
16
print(res1)
17
And am getting this error:
JavaScript
1
4
1
line 6, in f
2
return math.exp(-(x**2/2))/math.sqrt(2*math.pi)
3
TypeError: only size-1 arrays can be converted to Python scalars
4
Why is that so? Integration using quad method worked fine but not with trapz method
Advertisement
Answer
As a user commented, you can only use math functions with scalar values, for arrays you have to use math functions provided in NumPy library.