📜  Python| numpy matrix.fill()

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

Python| numpy matrix.fill()

借助Numpy matrix.fill()方法,我们能够在给定矩阵中填充scalar value ,并将输出作为具有标量值的矩阵提供。

示例 #1:
在这个例子中,我们可以看到在matrix.fill()方法的帮助下,我们能够用一个标量值填充给定的矩阵。

# import the important module in python
import numpy as np
         
# make matrix with numpy
gfg = np.matrix('[6, 2, 3]')
         
# applying matrix.fill() method
gfg.fill(0)
   
print(gfg)
输出:
[[0 0 0]]

示例 #2:

# import the important module in python
import numpy as np
         
# make a matrix with numpy
gfg = np.matrix('[1, 2, 3; 4, 5, 6]')
         
# applying matrix.fill() method
gfg.fill(1)
   
print(gfg)
输出:
[[1 1 1]
 [1 1 1]]