Double summation in matlab

38 次查看(过去 30 天)
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

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