Double sum with odd number
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I'm not sure how to calculate this sum. Anyone has an idea, please?
n = [1:2:1000];
gamma = 1;
ss = sum(sum((2./(n.*pi)).^6.*(3.*(1 - tanh(n.*pi./(2*gamma))./(n.*pi./(2*gamma)))) - (tanh(n.*pi./(2*gamma))).^2));
3 Commenti
Risposte (1)
VBBV
il 27 Giu 2023
n = [1:2:1000];
gamma = 1;
ss = sum(sum((2./(n.*pi)).^6.*(3.*(1 - tanh(n.*pi./(2*gamma))./(n.*pi./(2*gamma))) - tanh(n.*pi./(2*gamma)).^2)))
3 Commenti
VBBV
il 27 Giu 2023
Ok, it looks like its double sum over odd integer values for that term as you assumed it i.e.
n = [1:2:1000];
Vedere anche
Categorie
Scopri di più su Gamma Functions 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!

