Tagged Questions
4
votes
1answer
90 views
Integrating a list of functions
For the purpose of this minimal example, let's say we have a list of functions, like this:
f[y_?NumericQ] := {NIntegrate[z*y, {z, 0, 1}], a y}
I want to ...
1
vote
1answer
75 views
Syntax for integrating over limits specified by a Table
I wish to use NIntegrate to compute multidimensional integrals. However, I don't want to manually input the limits for the dimensions. I want to store the ...
2
votes
2answers
167 views
Making NIntegrate behave like a listable function
I have a function defined by
$$f(t)=\int\limits_0^t g(x) dx$$
$g(x)$ is a complicated function (specifically the Mittag-Leffler function which has recently been implemented in Mathematica 9 as ...
1
vote
0answers
197 views
About doing an integral
For a given integer $N$ and some function $f(x,y)$ I want to be able to do an integration of the kind,
$\int_{0} ^{\infty} \prod_ {i=1}^N da_i e^{[\sum_{n=1}^{\infty} \frac{1}{n} \left[ N + ...
4
votes
2answers
636 views
Is it possible to compute trapezoidal rule numerical integration?
Is it possible to compute trapezoidal rule numerical integration? I know that Mathematica has Interpolation, and that a list of points can be interpolated and then ...
7
votes
5answers
310 views
How to distinguish between lists and values?
I have a (hopefully small) problem with some numerical integration algorithm, more specifically I want to integrate the imaginary part of a complex valued function, e.g. ...
