sum of series
이전 댓글 표시
Hello to all I need to calculate the sum of series: S= (Vx+1 - Vx)+(Vx+2 - Vx)+ (Vx+3 - Vx)+ (Vx+...-Vx) while x changes and increases form 1 to 12 x=1:12 How to do it right and elegant? Thanks a lot.
답변 (2개)
Richard Brown
2012년 4월 11일
0 개 추천
I think you may need to try and ask your question more clearly. What you've written there reduces to 1 + 2 + 3 + ...
If it's an infinite sum, it obviously diverges, if not it's just n*(n+1)/2
댓글 수: 2
Image Analyst
2012년 4월 11일
I think the x+1, x+2 etc. are subscripts (indexes) of his V array.
Richard Brown
2012년 4월 11일
What we need here is LaTeX markup :)
Image Analyst
2012년 4월 11일
0 개 추천
Sounds like a homework problem. So you need to look up sum(V(1:12)) or cumsum(V(1:12)) - that should give you a big hint.
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!