# # Numerical Mathematics and Computing, Fifth Edition # Ward Cheney & David Kincaid # Brooks/Cole Publ. Co. # (c) 2003 # # file: rand # # Generating 2x2 array with random integer entries between -10 and 10 r := rand(-10..10); array([[r(), r()],[r(), r()]]);