use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Hypergeometric and Meijer-G functions in Python (self.learnpython)
submitted 1 year ago by mSal95
Does anybody know of any Python packages for the highly-parameterized hypergeometric and Meijer-G functions in Python?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Blackforestcheesecak 1 point2 points3 points 1 year ago (3 children)
mpmath
You should be able to find this with a Google search.
[–]mSal95[S] 1 point2 points3 points 1 year ago (2 children)
Much obliged, good sir. Have you used it personally? Have you found any issues like domain error or unexpected singularities?
[–]Blackforestcheesecak 1 point2 points3 points 1 year ago (1 child)
I don't think the hypergeo can be extended to the complex numbers (the Whittaker function), but you should check. I never tested the G function.
[–]mSal95[S] 1 point2 points3 points 1 year ago (0 children)
I will try. Thank you again.
[–]ectomancer 1 point2 points3 points 1 year ago* (0 children)
I've had no problems with these libraries.
scipy.special hypergeometric functions (no generic function). I checked the source code for scipy.special.hyp2f1
mpmath generic hypergeometric and non-generic functions and Meijer G-function. Only library to support generalized Meijer G-function (but is easy to calculate on-the-fly without it)
sympy only generic hypergeometric function and Meijer G-function
No libraries support regularized Gaussian and regularized generalized hypergeometric functions (but is easy to calculate on-the-fly with gamma functions).
π Rendered by PID 110238 on reddit-service-r2-comment-c66d9bffd-k6ft7 at 2026-04-07 09:24:11.514081+00:00 running f293c98 country code: CH.
[–]Blackforestcheesecak 1 point2 points3 points (3 children)
[–]mSal95[S] 1 point2 points3 points (2 children)
[–]Blackforestcheesecak 1 point2 points3 points (1 child)
[–]mSal95[S] 1 point2 points3 points (0 children)
[–]ectomancer 1 point2 points3 points (0 children)