フィルターのクリア

How can I find a doble sum series?

2 ビュー (過去 30 日間)
kadir can erbas
kadir can erbas 2021 年 12 月 27 日
コメント済み: Matt J 2021 年 12 月 28 日
I want to compute the series. Parameters a, b, c and d are known constants.
  5 件のコメント
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 日
[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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSignal Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by