📜  Python| numpy matrix.setfield()

📅  最后修改于: 2022-05-13 01:54:39.375000             🧑  作者: Mango

Python| numpy 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]]