Compute double sum or double integral throug sum
6 ビュー (過去 30 日間)
古いコメントを表示
x=[-20:0.2:10];
y=[-10:0.2:5];
u2=-3*exp(-sqrt(x.^2+y.^2)/2)
I want to sum this function from y=1 to the number of elements of y vector then the sum of this result from x=1 to the number of elements in x. IT is actually a double integral in form of sum.
2 件のコメント
Adam
2017 年 10 月 30 日
You want to sum from y = 1 up to the number of elements in y even though y begins at -10 and runs to 5? How is that expected to work exactly?
採用された回答
Honglei Chen
2017 年 10 月 30 日
If the ultimate goal is to compute the integral, you can consider using integral2
If you have to do it with sum, then since you already computed u2 for all values, it is just
x=[-20:0.2:10]; y=[-10:0.2:5]'; u2=-3*exp(-sqrt(x.^2+y.^2)/2);
sum(u2(:))*0.2*0.2
Note that you have to transpose x or y so it forms a grid
HTH
2 件のコメント
その他の回答 (1 件)
Roger Stafford
2017 年 10 月 30 日
[X,Y] = meshgrid(x,y);
M = -3*exp(-sqrt(X.^2+Y.^2)/2);
S = sum(M(:))*.2*.2; % The desired sum
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!