sum the series in matlab

I am trying to sum the following function in matlab but with the following code I got "Undefined 'symsum' for input arguments of type 'double'. Any idea?
p=3;
c=3;
r=4;
Syms v;
Syms r;
v=0; M= (r^c/factorial(c)*(1-p)+symsum(r^v/factorial(v),v, [v, c-1])^(-1));

Answers (1)

p=3;
c=3;
r=4;
syms v
M= (r^c/factorial(c)*(1-p)+symsum(r^v/factorial(v),v, [v, c-1])^(-1))

1 Comment

Thanks. I try to run this but still no value has shown for M. I used p=0.2 (as p<1). Any idea?

Sign in to comment.

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Asked:

on 31 Oct 2014

Commented:

on 31 Oct 2014

Community Treasure Hunt

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

Start Hunting!