How to perform summation till infinity in analysis?

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.

 Accepted Answer

You would use the symbolic toolbox and symsum()

3 Comments

Can you give an idea how (a small piece of code or example)? I know how to use symbolic functions, but I dont know how to use symsum() to do infinite additions. Currently, I am using the iteration of loop for this purpose...
syms m k
symsum((-1).^(m-k).*besselj(m,k), k, 1,inf)
Thank you for your time

Sign in to comment.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Asked:

on 11 Jan 2018

Commented:

on 12 Feb 2018

Community Treasure Hunt

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

Start Hunting!