Info

此问题已关闭。 请重新打开它进行编辑或回答。

How can I generate an integral of some 2-d functions?

1 次查看(过去 30 天)
For example, there is a function for variables, x,y.
The range of x,y are [0,500], respectively.
The function is just random and It is over 0.
How can I generate the integral of the function?
  2 个评论
Anirudh Singh
Anirudh Singh 2020-5-18
You can use function integral2 for 2-d integral here.
Example:
f = @(y, x) x.^2 + x.*sin(y).^2; % suppose this is our function
integral2(f, xmin, xmax, ymin, ymax);
For more detail you can refer the documentation link of function: https://in.mathworks.com/help/matlab/ref/integral2.html

回答(0 个)

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by