Double summation in matlab

38 ビュー (過去 30 日間)
AVM
AVM 2020 年 3 月 5 日
コメント済み: Atrolita afra 2020 年 3 月 29 日
I would like to do this double summation . where alpha=2; beta=1.5;
I am confuse about the command availbale in online .Pl somebody help me what is way of solving this summation.
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 3 月 5 日
Because you used addition here where the original question used multiplication.

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

採用された回答

Mohammad Sami
Mohammad Sami 2020 年 3 月 5 日
You can define a function to calculate the expression inside the brackets.
a = @(p,param)param.^p./factorial(p); % (param^n)/factorial(n)
% param is alpha or beta, p = n or m
sum(sum(a(0:10,2)' * a(0:15,1.5)))
  11 件のコメント
Atrolita afra
Atrolita afra 2020 年 3 月 29 日
can you please help me to plot this equation?
Atrolita afra
Atrolita afra 2020 年 3 月 29 日
other information and the figure is here

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by