如何将矩阵中的整数转换为python中相应的字母表

时间:2014-12-16 09:11:56

标签: python

我试图将整数矩阵转换为python中相应的字母表。 1 = a,b = 2等 这就是我到目前为止xlabels是带整数的矩阵。

a = np.zeros((15,15))
for x in xrange(0,15):
    for y in xrange(0,15):
        a[x, y] = chr(ord('a')-1 + xlabels[0, 0])
print(a)

但我收到错误

ValueError: could not convert string to float: n

1 个答案:

答案 0 :(得分:0)

替换:

a = np.zeros((15,15))

使用:

a = np.zeros((15,15), dtype=str)