Borrar filtros
Borrar filtros

do we have relation between LommelS2 and MeijerG in matlab?

3 visualizaciones (últimos 30 días)
gourav pandey
gourav pandey el 25 de En. de 2021
Comentada: Mubashara Wali el 5 de Abr. de 2021
Do we have matlab relation between two special function "LommelS2 and MeijerG"?
How to convert LommelS2 code into MeijerG?
Please help !!

Respuestas (2)

Walter Roberson
Walter Roberson el 25 de En. de 2021
Editada: Walter Roberson el 26 de En. de 2021
and scroll down to near the bottom to see the conversions.
  19 comentarios
Walter Roberson
Walter Roberson el 5 de Abr. de 2021
I have corrected the ABC and regenerated the result. I had accidentally put in 1 - 1- alpha instead of 1 - alpha

Iniciar sesión para comentar.


gourav pandey
gourav pandey el 5 de Abr. de 2021
Editada: gourav pandey el 5 de Abr. de 2021
Walter Roberson, thanks for your reply..can you help me here also
clc;
close;
clear all;
n=5;
h=@(omega1) 0;
for m= 0:1:n
mu1c = -(1./2).*n-(1./2).*m+3./2 ;
nu1c = (1./2).*n+(1./2).*m+1./2 ;
Lommels =@(omega1) meijerG([(1./2).*mu1c+1./2], [], [(1./2).*mu1c+1./2, (1./2).*nu1c, -(1./2).*nu1c], [], -(1./4).*omega1.^2).*2^mu1c./(2.*gamma(-(1./2).*mu1c+(1./2).*nu1c+1./2).*gamma(-(1./2).*mu1c-(1./2).*nu1c+1./2))
end
Lommels(1)
Lommels(10)
Lommels(99)
Lommels(100)
Lommels(500)
Lommels(1000)
%% Why m i getting sudden blow in value of 'Lommels' when omega1 veluse more than 120 or 150... it should decay as omega1 increase.
Thank you in advance!!
  1 comentario
Walter Roberson
Walter Roberson el 5 de Abr. de 2021
You are overwriting Lommels within the loop, so the final result will reflect only m == n

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by