日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Python numpy生成矩阵、串联矩阵

發布時間:2025/3/21 57 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python numpy生成矩阵、串联矩阵 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

import numpy

生成numpy矩陣的幾個相關函數:

numpy.array()

numpy.zeros()

numpy.ones()

numpy.eye()


串聯生成numpy矩陣的幾個相關函數:

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 numpy生成矩阵、串联矩阵的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。