random number generator function
What is SAGE's equivalent of Mathematica's RandomReal[] function?
What is SAGE's equivalent of Mathematica's RandomReal[] function?
I don't know much about Mathematica but from looking at the description here I think you want random_element(). Typing
RR.random_element(-10,10)
will produce a random real between -10 and 10. Change the upper and lower limits as you need.
Asked: 2013-12-04 15:28:11 -0600
Seen: 2,897 times
Last updated: Dec 06 '13
Converting from Mathematica output
derivative of order var('m') returns 0
Mathematica graphics in a sage notebook
Import class using mathematica
Rounding entries of a random vector
SageMath cannot access Mathematica
Reliability of Sage vs commercial software
Mathematica misinterprets some underscored symbolic variables
See if the [random_element](http://www.sagemath.org/doc/reference/rings_numerical/sage/rings/real_mpfr.html) command is what you want. For example RR.random_element(-10,10)
Yes, thank you. That's what I was looking for.
@dazedANDconfused - please put this as an answer so that Tom can accept it :)