[SciPy-User] ANN: rvmath 0.1

Hernan Grecco hernan.grecco at gmail.com
Tue May 11 14:53:34 EDT 2021


Hi,

I am writing to announce the first release of rvmath. Briefly, it is a thin
wrapper around scipy stats module that allows you to write and evaluate
math expressions involving random variables.

>>> import rvmath as rvm
>>> x = rvm.uniform()
>>> y = rvm.norm()
>>> z = x + y
>>> print(z.rvs(3))

Being built on top of SciPy, all continuous distributions available there
are also available in this package (with the same options). NumPy functions
and ufuncs are also supported out of the box.

You can check the code and README: https://github.com/hgrecco/rvmath

best,

Hernán
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.python.org/pipermail/scipy-user/attachments/20210511/8f75aba7/attachment.html>


More information about the SciPy-User mailing list