On 5/8/07, Fernando Martin <[EMAIL PROTECTED]> wrote:
Hi i cant use the random_integers functionfrom RandomArray import * map = random_integers(1,0, (5,5)) Output: -->ImportError: No module named RandomArray how can use the function? Thanks
Make sure that you have numpy correctly installed as RandomArray is a module inside numpy. Homepage http://numpy.scipy.org// Download http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103 Ian
