import numpy
生成numpy矩陣的幾個(gè)相關(guān)函數(shù):
numpy.array()
numpy.zeros()
numpy.ones()
numpy.eye()
串聯(lián)生成numpy矩陣的幾個(gè)相關(guān)函數(shù):
numpy.array()
numpy.row_stack()
numpy.column_stack()
numpy.reshape()
>>> import numpy >>> numpy.eye(3) array([[ 1., 0., 0.], [ 0., 1., 0.], [ 0., 0., 1.]]) >>> numpy.zeros(3) array([ 0., 0., 0.]) >>> numpy.ones(3) array([ 1., 1., 1.]) >>> x1 = numpy.array((1, 2, 3)) >>> x1 array([1, 2, 3]) >>> x2 = numpy.array([4, 5, 6]) >>> x2 array([4, 5, 6]) >>> x3 = numpy.array((x1, x2)) >>> x3 array([[1, 2, 3], [4, 5, 6]]) >>> x4 = x3.reshape(2, 3) >>> x4 array([[1, 2, 3], [4, 5, 6]]) >>> x4 = x3.reshape(3, 2) >>> x4 array([[1, 2], [3, 4], [5, 6]]) >>> x5 = numpy.row_stack(x1, x2) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: vstack() takes exactly 1 argument (2 given) >>> x5 = numpy.row_stack((x1, x2)) >>> x5 array([[1, 2, 3], [4, 5, 6]]) >>> x6 = numpy.row_stack([x1, x2]) >>> x6 array([[1, 2, 3], [4, 5, 6]]) >>> x7 = numpy.row_stack((x6, x2)) >>> x7 array([[1, 2, 3], [4, 5, 6], [4, 5, 6]]) >>> x7[0] array([1, 2, 3]) >>> x7[1] array([4, 5, 6]) >>> x7[2] array([4, 5, 6]) >>> x8 = numpy.column_stack([x1, x2, x1, x2]) >>> x8 array([[1, 4, 1, 4], [2, 5, 2, 5], [3, 6, 3, 6]]) >>> x8[0] array([1, 4, 1, 4]) >>> x8[1] array([2, 5, 2, 5]) >>> x8[2] array([3, 6, 3, 6]) >>> x8[3] Traceback (most recent call last): File "<stdin>", line 1, in <module> IndexError: index 3 is out of bounds for axis 0 with size 3 >>> x8[0][3] 4 >>>
python生成1行四列全2矩陣
print np.ones((1,4))*2
總結(jié)
以上就是本文關(guān)于Python numpy生成矩陣、串聯(lián)矩陣代碼分享的全部?jī)?nèi)容,希望對(duì)大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關(guān)專題,如有不足之處,歡迎留言指出。感謝朋友們對(duì)本站的支持!
新聞熱點(diǎn)
疑難解答
圖片精選