Does anyone know how to code this summation equation that includes exponential and sine function?
Show older comments

2 Comments
Dyuman Joshi
on 6 Jan 2024
Edited: Dyuman Joshi
on 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))
Accepted Answer
More Answers (0)
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

