On Sun, Oct 3, 2021 at 4:15 PM Mark Bakker <mark...@gmail.com> wrote:
> Dear List, > > I just found out that there is a numpy.math subpackage with a bunch of > extra mathematical functions (I needed the factorial function). I have been > googling for 10 minutes, but can not find any documentation on the > numpy.math subpackage (my poor google skills, I am sure). Can anybody point > me to the documentation for this subpackage? Or maybe explain why it exists > and what the advantages are over the regular math functions in numpy, > scipy.special, etc? > Don't use it, it's just the stdlib math module that leaks into the numpy namespace: >>> import math >>> np.math is math True Ralf
_______________________________________________ NumPy-Discussion mailing list -- numpy-discussion@python.org To unsubscribe send an email to numpy-discussion-le...@python.org https://mail.python.org/mailman3/lists/numpy-discussion.python.org/ Member address: arch...@mail-archive.com