do we have relation between LommelS2 and MeijerG in matlab?

8 ビュー (過去 30 日間)
gourav pandey
gourav pandey 2021 年 1 月 25 日
コメント済み: Mubashara Wali 2021 年 4 月 5 日
Do we have matlab relation between two special function "LommelS2 and MeijerG"?
How to convert LommelS2 code into MeijerG?
Please help !!

回答 (2 件)

Walter Roberson
Walter Roberson 2021 年 1 月 25 日
編集済み: Walter Roberson 2021 年 1 月 26 日
and scroll down to near the bottom to see the conversions.
  19 件のコメント
Walter Roberson
Walter Roberson 2021 年 4 月 5 日
I have corrected the ABC and regenerated the result. I had accidentally put in 1 - 1- alpha instead of 1 - alpha
Mubashara Wali
Mubashara Wali 2021 年 4 月 5 日
Thankyou

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


gourav pandey
gourav pandey 2021 年 4 月 5 日
編集済み: gourav pandey 2021 年 4 月 5 日
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 件のコメント
Walter Roberson
Walter Roberson 2021 年 4 月 5 日
You are overwriting Lommels within the loop, so the final result will reflect only m == n

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

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by