Regularized hypergeometric function in Matlab

조회 수: 7 (최근 30일)
Wissem-Eddine KHATLA
Wissem-Eddine KHATLA 2022년 7월 6일
댓글: Wissem-Eddine KHATLA 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-Eddine KHATLA
Wissem-Eddine KHATLA 2022년 7월 6일
@Walter Roberson Thank you for your help

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by