Reputation: 1082
I have a function which I want to integrate. I have two numpy arrays, one with the x
-values and one with the function f(x)
. I am looking for a function F(x)
which is the antiderivative of f(x)
, defined on the same grid x
. This grid x
is non-uniform.
Is there some numpy or scipy function giving me the array F(x)
?
Upvotes: 1
Views: 2630