Regularized hypergeometric function in Matlab

7 ビュー (過去 30 日間)
Wissem
Wissem 2022 年 7 月 6 日
コメント済み: Wissem 2022 年 7 月 6 日
Hello everyone,
I would like to implement the value of a regularized hypergeometric function : .
I don't know how to write it in Matlab : For instance, I know that the regularized confluent hypergeometric function is written like this :
=
hypergeom(a,b,c)/gamma(b);
But when the a vector is empty how do we write the regularized form ?
The generalized form in my case should be something like :
hypergeom([],b,c);
Anyone for help please ?
Thank you.

採用された回答

Walter Roberson
Walter Roberson 2022 年 7 月 6 日
syms k
desired = hypergeom([], 2, 1/(4*k))
desired = 
  3 件のコメント
Walter Roberson
Walter Roberson 2022 年 7 月 6 日
syms b c
desired = hypergeom([], b, c) / gamma(b)
desired = 
Wissem
Wissem 2022 年 7 月 6 日
@Walter Roberson Thank you for your help

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by