当前位置:首页 » python教程 » 正文

python 二维矩阵转三维矩阵示例

看: 1187次  时间:2021-01-28  分类 : python教程

如下所示:

>>> import numpy as np
>>> a = np.arange(12).reshape(3,4)
>>> a
array([[ 0, 1, 2, 3],
    [ 4, 5, 6, 7],
    [ 8, 9, 10, 11]])
>>> type(a)
<class 'numpy.ndarray'>
>>> b=np.reshape(a,(3,4,1))
>>> np.shape(b)
(3, 4, 1)
>>> c=np.concatenate([b,b],2)
>>> np.shape(c)
(3, 4, 2)

对于 numpy.ndarry格式的变量才行,常量不可以。

>>> b=np.mat([0,0,0])
>>> c=np.tile(b,(2,1))
>>> np.shape(c)
(2, 3)
>>> type(c)
<class 'numpy.matrixlib.defmatrix.matrix'>
>>> d=np.reshape(c,(2,3,1))
>>> np.shape(d)

以上这篇python 二维矩阵转三维矩阵示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持python博客。

标签:numpy  

<< 上一篇 下一篇 >>

搜索

推荐资源

  Powered By python教程网   鲁ICP备18013710号
python博客 - 小白学python最友好的网站!