How to code for summation?
조회 수: 1(최근 30일)
표시 이전 댓글
Hi all,
Can anyone please tell me how can I do the coding to complete this sum?

Also, how can I write down the code that adds up one term after one term and plots them? For example,
x = -pi:0,01:pi;
plot(x,term1); hold on;
plot(x,term1+term2); hold on;
plot(x,term1+term2+term3); hold on;
until all 7 terms! Thank you so much fro your help!!
댓글 수: 0
채택된 답변
Walter Roberson
2022년 10월 5일
Your sin(x) term is constant in n, so you can move it outside the summation.
x = -pi:0.01:pi;
sx = sin(x);
factor = cumsum(2./(1:7))
result = factor .* sx.';
plot(x, result)
댓글 수: 0
추가 답변(0개)
참고 항목
범주
Find more on Loops and Conditional Statements 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!