How to perform summation till infinity in analysis?

조회 수: 1 (최근 30일)
Syed
Syed 2018년 1월 11일
댓글: Syed 2018년 2월 12일
Hey everyone,
Trying to solve a research article, I stumbled upon an equation which I don't know how to input in Matlab. Currently, I am planning to take an upper-bound integer and simulate the iteration to that number. But what is the exact way to do it?
Please find the image attached to understand what I mean.

채택된 답변

Walter Roberson
Walter Roberson 2018년 1월 11일
You would use the symbolic toolbox and symsum()
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 1월 11일
syms m k
symsum((-1).^(m-k).*besselj(m,k), k, 1,inf)
Syed
Syed 2018년 2월 12일
Thank you for your time

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by