4D integration numerical evaluation

15 ビュー (過去 30 日間)
R yan
R yan 2015 年 2 月 12 日
コメント済み: TheStranger 2023 年 1 月 17 日
Hi
I am trying to numerically evaluate a 4D integral of the form:
\int\int\int\int K(x,y,t,s)h_m(x)h_n(y)h_p(t)h_q(s)dxdydtds, limits of integral is 0 to 1.
where h is a function of single variable.
thanks
  1 件のコメント
Star Strider
Star Strider 2015 年 2 月 12 日
See the documentation for integral. Depending on your version of MATLAB, you may need to search for the correct function. In previous versions, the quad function and its friends did numerical integration of functions.
You will need to iterate your integration four times, once for each variable.
Another option is trapz if you have already evaluated your function over a 4D grid and you want to use trapezoidal integration. You will have to integrate it over each dimension, so four times for it as well.

サインインしてコメントする。

採用された回答

Mike Hosea
Mike Hosea 2015 年 2 月 13 日
Well, you can try integralN from the file exchange. I wrote that little ditty just so I wouldn't have to keep explaining the nuances of how to nest calls to integral functions. The call would look like
integralN(@(x,y,t,s)K(x,y,t,s).*h_m(x).*h_n(y).*h_p(t).*h_q(s),0,1,0,1,0,1,0,1);
But you might gain some advantage here by nesting the calls yourself, since you can factor out a couple of functions easily.
inners = @(x,y)h_m(x).*h_n(y).*integral2(@(t,s)K(x*ones(size(t),y*ones(size(t),t,s).*h_p(t).*h_q(s),0,1,0,1);
inner = @(x,y)arrayfun(inners,x,y);
Q = integral2(inner,0,1,0,1);
I don't have time to test that right now. Give it a try. Note that I'm assuming K, h_p and h_q can be called with array inputs so that they compute array outputs, the function values computed element-wise. Usually this means using .* instead of *, ./ instead of /, and .^ instead of ^, but it isn't always quite that simple.
  4 件のコメント
John D'Errico
John D'Errico 2015 年 2 月 20 日
What people do not realize is just how much computation a 4-times nested integral involves.
A single numerical integral will often require 100 to perhaps 1000 function evaluations, or more. This depends on how complex is the function. These n-d integrators typically treat the next outer integral as if the inner integral is just a general function, to be then integrated. So we can visualize that a 4-times nested integral will typically require something on the order of 100^4=1e8 function evaluations, OR MORE. No matter how fast your computer, calling for 1e8 kernel evaluations will take some time.
TheStranger
TheStranger 2023 年 1 月 17 日
@John D'Errico true, my colleague who used to approximate many-dimensional integral said that a possible solution is to estimate it using Monte-Carlo, as directly putting a whole mesh of data values into RAM, most likely, is impossible on a typical PC that is not a supercomputer.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by