Python Numpy matrix.setfield()

Python Numpy matrix.setfield()

在matrix.setfield()方法的帮助下,矩阵中的所有字段被设置为以参数形式传递的值。

语法: matrix.setfield()

返回:新矩阵,其值作为参数传递。

例子#1 :

在这个例子中,我们可以看到matrix.setfield()方法被用来生成一个新的矩阵,该矩阵的值被作为参数传入该方法。

# import the important module in python
import numpy as np
            
# make matrix with numpy
gfg = np.matrix('[4, 1; 12, 3]')
            
# applying matrix.setfield() method
gfg.setfield(2, np.int32)
  
print(gfg)

输出:

[[2 2]
 [2 2]]

例子#2 :

# import the important module in python
import numpy as np
            
# make matrix with numpy
gfg = np.matrix('[4, 1, 9; 12, 3, 1; 4, 5, 6]')
            
# applying matrix.setfield() method
gfg.setfield(25, np.int32)
  
print(gfg)

输出:

[[25 25 25]
 [25 25 25]
 [25 25 25]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程