how can i do this summation
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have two summation ,a=0 to a=m+1 and b=0 to b=n+1,where m=100,n=50.?
8 Commenti
Risposta accettata
Azzi Abdelmalek
il 18 Set 2013
Modificato: Azzi Abdelmalek
il 18 Set 2013
s=zeros(1,88);
for k=1:88
for a=0:n+1
for b=0:m+1
s(k)=s(k)+v(a+1,b+1)^(k+1)-v(a+1,b+1)^k
end
end
end
s=s/(m*n)
0 Commenti
Più risposte (2)
Walter Roberson
il 18 Set 2013
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 Commenti
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!