将元组列表转换为numpy数组

时间:2014-12-19 08:00:47

标签: python python-3.x numpy

如何转换:

x = [(65535, 9976, 65535, 5690, 6.8501953124999995), (65535, 8779, 65312, 5045, 21.178124999999998)]

到numpy数组?

1 个答案:

答案 0 :(得分:4)

你试过这个吗?

np.asarray(x)