how to code hypergeometric functions ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Walter Roberson
il 7 Gen 2022
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 Commenti
Vedere anche
Categorie
Scopri di più su Special Functions in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!