python - 怎么理解numpy的axis?
ringa_lee
ringa_lee 2017-04-18 09:31:08
0
3
438

1.假如我有一个二维数组:

[[0,1,2],[3,4,5],[6,7,8],[9,10,11]]

那么这里的轴axis怎么理解。axis在上面的数组中最大是多少。我没有看懂英文的教程,请详细解释一下。谢谢。

ringa_lee
ringa_lee

ringa_lee

Antworte allen(3)
左手右手慢动作

你这个是2维数组吧...
axis 有0或1吧

阿神

你这个是二维
学习下线性代数吧

Ty80

axis 就是 轴,数轴 的意思,
对应多维数组里的 维。
你的例子是 4 x 3 的 二维数组,有2个轴:0轴,1轴


>>> import numpy as np
>>> a = np.array([[0,1,2],[3,4,5],[6,7,8],[9,10,11]])
>>> a
array([[ 0,  1,  2],
       [ 3,  4,  5],
       [ 6,  7,  8],
       [ 9, 10, 11]])
>>> a.shape
(4, 3)
>>> a.ndim
2
>>> 
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage