how can i do this summation
古いコメントを表示
I have two summation ,a=0 to a=m+1 and b=0 to b=n+1,where m=100,n=50.?
8 件のコメント
Azzi Abdelmalek
2013 年 9 月 18 日
If m=2 and n=3 what should be the result?
Azzi Abdelmalek
2013 年 9 月 18 日
Ok, show us the result for m=3 and n=2
Mary Jon
2013 年 9 月 18 日
Azzi Abdelmalek
2013 年 9 月 18 日
This is not clear
Mary Jon
2013 年 9 月 18 日
編集済み: Azzi Abdelmalek
2013 年 9 月 18 日
Azzi Abdelmalek
2013 年 9 月 18 日
a and b are not used in your sum. What are i and j? what is k?
Mary Jon
2013 年 9 月 18 日
編集済み: Azzi Abdelmalek
2013 年 9 月 18 日
採用された回答
その他の回答 (2 件)
Azzi Abdelmalek
2013 年 9 月 18 日
m=100
out=sum(0:m)
Walter Roberson
2013 年 9 月 18 日
Supposing that f(a,b) gives you the term you are summing, then
[A, B] = ndgrid(0:m+1, 0:n+1);
fAB = arrayfun(@f, A, B);
sum(fAB(:))
or
fAB = bsxfun(@f, (0:m+1).', 0:n+1);
sum(fAB(:))
3 件のコメント
Mary Jon
2013 年 9 月 18 日
Walter Roberson
2013 年 9 月 18 日
MATLAB 7... you mean R14? Is it at least R14SP1 ?
Mary Jon
2013 年 9 月 20 日
カテゴリ
ヘルプ センター および File Exchange で Function Creation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!