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!


