用NumPy查找给定矩阵的行数和列数

用NumPy查找给定矩阵的行数和列数

在NumPy的shape()函数的帮助下,我们可以找到行数和列数。在这个函数中,我们传递一个矩阵,它将返回矩阵的行数和列数。

语法:

shape()

返回:行和列的数量。

示例:

import numpy as np
  
  
matrix= np.arange(1,9).reshape((3, 3))
  
# Original matrix
print(matrix)
  
# Number of rows and columns of the said matrix
print(matrix.shape)

输出:

[[1 2 3]
[4 5 6]
[7 8 9]]
(3,3)

示例 :

import numpy as np
  
  
matrix= np.arange(10,15).reshape((3, 2))
  
# Original matrix:
print(matrix)
  
# Number of rows and columns of the said matrix
print(matrix.shape)

输出

[[10 11]
[12 13]
[14 15]]
(3,2)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程