We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
loc
scale
I wish the loc and scale arguments of rvs_normal were optional when generating a 1D array of variates, so that one could write
rvs_normal
x = rvs_normal(array_size=n)
instead of
x = rvs_normal(0.0_dp, 1.0_dp, array_size=n)
That is how numpy.random.normal works.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I wish the
loc
andscale
arguments ofrvs_normal
were optional when generating a 1D array of variates, so that one could writex = rvs_normal(array_size=n)
instead of
x = rvs_normal(0.0_dp, 1.0_dp, array_size=n)
That is how numpy.random.normal works.
The text was updated successfully, but these errors were encountered: