Lines Matching refs:scale
58 def sMatGen(m, n, scale): argument
59 a = mat(random.randint(1, 10, size=(m, n)).astype('f4')/scale)
63 def dMatGen(m, n, scale): argument
64 a = mat(random.randint(1, 10, size=(m, n)).astype('f8')/scale)
68 def cMatGen(m, n, scale): argument
69 a_real = mat(random.randint(1, 10, size=(m, n)).astype('f4')/scale)
70 a_img = mat(random.randint(1, 10, size=(m, n)).astype('f4')/scale)
75 def zMatGen(m, n, scale): argument
76 a_real = mat(random.randint(1, 10, size=(m, n)).astype('f8')/scale)
77 a_img = mat(random.randint(1, 10, size=(m, n)).astype('f8')/scale)
82 def matrixCreateScale(dt, m, n, scale): argument
84 return sMatGen(m, n, scale);
86 return dMatGen(m, n, scale);
88 return cMatGen(m, n, scale);
90 return zMatGen(m, n, scale);