how to code hypergeometric functions ?
1 回表示 (過去 30 日間)
古いコメントを表示
How to code those two hypergeometric functions ?
2F1(3/4,3/4,7/4;1/(1-b)
2F1[1,1,7/4;e^(ql/d)/(1-b)
0 件のコメント
回答 (1 件)
Walter Roberson
2022 年 1 月 7 日
syms b ql d
val1 = hypergeom([3/4, 3/4], [7/4], 1/(1-b))
val2 = hypergeom([1, 1], [7/4], exp(ql/d)/(1-b))
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Special Functions についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!