Does anyone know how to code this summation equation that includes exponential and sine function?
显示 更早的评论

2 个评论
Dyuman Joshi
2024-1-6
编辑:Dyuman Joshi
2024-1-6
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))
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


