Double summation in matlab

38 visualizaciones (últimos 30 días)
AVM
AVM el 5 de Mzo. de 2020
Comentada: Atrolita afra el 29 de Mzo. de 2020
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 comentario
Walter Roberson
Walter Roberson el 5 de Mzo. de 2020
Because you used addition here where the original question used multiplication.

Iniciar sesión para comentar.

Respuesta aceptada

Mohammad Sami
Mohammad Sami el 5 de Mzo. de 2020
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 comentarios
Atrolita afra
Atrolita afra el 29 de Mzo. de 2020
can you please help me to plot this equation?
Atrolita afra
Atrolita afra el 29 de Mzo. de 2020
other information and the figure is here

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by