Suppose you have a table representing some unknown function $f(t)$. From it, you can compute another table for its derivative using $f'(t_i)=\frac{f(t_{i+1})-f(t_i)}{\Delta t}$. Is there a similar way for me to get a table with the antiderivative $\int f(t) dt$?
All I get when I google it are ways to compute a definite integral and that's not what I need. I need a discrete way for computing indefinite integrals from a discreete function that in general will not be a candidate for symbolic integration.
Given a table of points: $t,f(t)$ there are a few ways to estimate the integral. All are tied to the Reimann sum.
Here is the trapezoidal sum.
$\sum_\limits{k=1}^n \frac 12 (t_{k} - t_{k-1})(f(t_k) + f(t_{k-1}))$