Does anyone know how to code this summation equation that includes exponential and sine function?
Afficher commentaires plus anciens

2 commentaires
Dyuman Joshi
le 6 Jan 2024
Modifié(e) : Dyuman Joshi
le 6 Jan 2024
I do not know if the sum converges or not and I am feeling a bit lazy to check rn.
But symsum() or vpasum() don't seem to find an explicit value -
syms m t
PI = sym('pi');
term = 180/(2*m*PI)*exp(-(2*m)^2*PI^2*t/900)*sin(2*m*PI/30);
%symsum
out1 = symsum(term, m, 1, Inf)
vpa(subs(out1, t, 3))
%vpasum
out2 = vpasum(term, m, 1, Inf)
vpa(subs(out2, t, 3))
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


