採用された回答

Walter Roberson
Walter Roberson 2020 年 5 月 3 日
編集済み: Walter Roberson 2020 年 5 月 3 日

0 投票

4 件のコメント

kunal
kunal 2020 年 5 月 3 日
THANK YOU SIR.
I already have gone through 'https://www.mathworks.com/help/symbolic/meijerg.html',but here they haven't provided proper discription of the arguments given to the meijerG function in matlab.
So it will be really nice of you if you tell me how can to calculate numerical value of this in matlab.
Walter Roberson
Walter Roberson 2020 年 5 月 3 日
you can work it out from the More About section of the document.
Walter Roberson
Walter Roberson 2020 年 5 月 3 日
is m=1, n=2, p=2, q=2
A = vector of length n (2), a(1:n) -> a(1:2)
B = vector of length p-n (2-2), a(n+1:p) -> a(3:2) -> empty
C = vector of length m (1), b(1:1) -> b(1)
D = vector of length q-m (2-1), b(m+1:q) -> b(2:2) -> b(2)
With the entire vector a being [1 1], and the entire vector b being [1 1], then we get
A = a(1:2) = [1 1]
B = []
C = b(1) = [1]
D = b(2) = [1]
leading to the call
meijerg([1 1], [], [1], [1], z)
kunal
kunal 2020 年 5 月 4 日
Thank you so much !

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSpecial Functions についてさらに検索

タグ

質問済み:

2020 年 5 月 3 日

コメント済み:

2020 年 5 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by