NumPy 的 ndim
属性以 int
形式返回数组的维数(或轴)。请注意,这里的维度概念不是数学的(例如[1,2,3]
是one-dimension数组,而不是三维)。
例子
获取一维数组的维度
x = np.array([1,2,3])
x.ndim
1
获取二维数组的维度
x = np.array([[1,2],[3,4]])
x.ndim
2
相关用法
- Python SciPy ndimage.interpolation.geometric_transform()用法及代码示例
- Python SciPy ndimage.spline_filter1d()用法及代码示例
- Python SciPy ndimage.map_coordinates()用法及代码示例
- Python scipy ndimage.sum用法及代码示例
- Python numpy ndarray.tostring用法及代码示例
- Python Numpy ndarray.tobytes()用法及代码示例
- Python Numpy ndarray.getfield()用法及代码示例
- Python numpy ndarray.dot用法及代码示例
- Python Numpy ndarray.transpose()用法及代码示例
- Python Numpy ndarray.flatten()用法及代码示例
- Python Numpy ndarray.setfield()用法及代码示例
- Python Numpy ndarray.itemset()用法及代码示例
- Python Numpy ndarray.dot()用法及代码示例
- Python numpy.less()用法及代码示例
- Python networkx.algorithms.shortest_paths.weighted.all_pairs_dijkstra_path用法及代码示例
- Python numpy.polynomial.hermite.hermmul用法及代码示例
- Python numpy.seterrobj用法及代码示例
- Python networkx.classes.function.edge_subgraph用法及代码示例
- Python numpy.tril()用法及代码示例
- Python numpy.around用法及代码示例
- Python networkx.algorithms.tree.mst.maximum_spanning_edges用法及代码示例
- Python numpy.random.standard_normal()用法及代码示例
- Python networkx.algorithms.bipartite.basic.color用法及代码示例
- Python numpy.select用法及代码示例
- Python networkx.algorithms.bipartite.cluster.latapy_clustering用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 NumPy | ndim property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。