Regularized hypergeometric function in Matlab

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.

 Respuesta aceptada

syms k
desired = hypergeom([], 2, 1/(4*k))
desired = 

3 comentarios

Wissem
Wissem el 6 de Jul. de 2022
@Walter Roberson Ok : so you rewrite it as a bessel function ? Thank you for your help. But is there a direct way to implement regularized function ?
syms b c
desired = hypergeom([], b, c) / gamma(b)
desired = 
Wissem
Wissem el 6 de Jul. de 2022
@Walter Roberson Thank you for your help

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 6 de Jul. de 2022

Comentada:

el 6 de Jul. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by