本文主要是介绍numpy.matrix.A1,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
等价于np.asarray(x).ravel()
x = np.matrix(np.arange(12).reshape((3,4))); x
matrix([[ 0, 1, 2, 3],[ 4, 5, 6, 7],[ 8, 9, 10, 11]])
x.getA1()
array([ 0, 1, 2, ..., 9, 10, 11])
Example from official site of numpy
这篇关于numpy.matrix.A1的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!