Double summation in matlab

조회 수: 35 (최근 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 CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by