sum the series in matlab

조회 수: 6 (최근 30일)
Smith
Smith 2014년 10월 31일
댓글: Smith 2014년 10월 31일
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));

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 10월 31일
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
Smith
Smith 2014년 10월 31일
Thanks. I try to run this but still no value has shown for M. I used p=0.2 (as p<1). Any idea?

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

카테고리

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