How can I find a doble sum series?

I want to compute the series. Parameters a, b, c and d are known constants.

댓글 수: 5

Voss
Voss 2021년 12월 27일
What about k?
You can use the built-in MATLAB function nchoosek() to get the binomial coefficients.
kadir can erbas
kadir can erbas 2021년 12월 28일
k is a known parameter.
Matt J
Matt J 2021년 12월 28일
편집: Matt J 2021년 12월 28일
Shouldn't the upper summation limits be a and b rather than ?
kadir can erbas
kadir can erbas 2021년 12월 28일
Actually, a,b,c,d,k are not integers :(
Upper liimits may not be infinity.
Matt J
Matt J 2021년 12월 28일
Upper liimits may not be infinity.
But in the mathematical expression in your post, the upper limits are infinity, so I suggest you edit the expression to avoid confusion.

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

답변 (1개)

Matt J
Matt J 2021년 12월 28일
편집: Matt J 2021년 12월 28일

0 개 추천

[a,b,c,d,k]=deal(4,5,1,2,0.5); %fake constants
I=(0:b)'; J=(0:a);
bicoeff=@(alpha,n) prod(alpha-(0:n-1))/factorial(n);
vi=arrayfun(@(n)bicoeff(b,n),I)';
vj=arrayfun(@(n)bicoeff(a,n),J)';
result= vi* (k.^(2*I)./(J+c+d*I)) *vj
result = 12.1491

댓글 수: 2

kadir can erbas
kadir can erbas 2021년 12월 28일
Actually, a,b,c,d,k are not integers :(
Upper liimits may not be infinity.
Matt J
Matt J 2021년 12월 28일
See the revised version of my answer.

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

카테고리

도움말 센터File Exchange에서 Mathematics에 대해 자세히 알아보기

질문:

2021년 12월 27일

댓글:

2021년 12월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by