-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
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
Random Engine #33
Comments
@prasunanand could you please explain this feature and some guidelines how to implement it. |
Please take a look at different generators in numpy code base. http://www.netlib.org/lapack/explore-html/df/dd1/group___o_t_h_e_rauxiliary_ga77e05a87ced667cbdb502aa87c72d056.html Describe an approach how you will implement it ? |
The random module in NumPy has random generators such as random.uniform for uniform distribution, random.randn for normal distribution, and also range based pseudo-random generators. What I am thinking is of a nested class in NumRuby that will bind to the native C functions for the various random generators.
|
@prasunanand I am getting an error when I try to call LAPACK_dlarnv subroutine ( undefined reference to dlarnv ) |
Implement Random Engine generators
The text was updated successfully, but these errors were encountered: