#!/usr/bin/python -Wall # ================================================================ # John Kerl # kerl.john.r@gmail.com # 2008-02-06 # # Test code for randmatc_m.py. # ================================================================ # This software is released under the terms of the GNU GPL. # Please see LICENSE.txt in the same directory as this file. # ================================================================ from __future__ import division # 1/2 = 0.5, not 0. import randmatc_m import sys #A = randmatc_m.randmatc(3,4); A.printf() #A = randmatc_m.randsqmatc(3); A.printf() #A = randmatc_m.randgue(3); A.printf() A = randmatc_m.randxxt(3); A.printf()