Regularized hypergeometric function in Matlab

5 vues (au cours des 30 derniers jours)
Wissem-Eddine KHATLA
Wissem-Eddine KHATLA le 6 Juil 2022
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.

Réponse acceptée

Walter Roberson
Walter Roberson le 6 Juil 2022
syms k
desired = hypergeom([], 2, 1/(4*k))
desired = 
  3 commentaires
Walter Roberson
Walter Roberson le 6 Juil 2022
syms b c
desired = hypergeom([], b, c) / gamma(b)
desired = 
Wissem-Eddine KHATLA
Wissem-Eddine KHATLA le 6 Juil 2022
@Walter Roberson Thank you for your help

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by