Python Numpy matrix.fill()
在Numpy matrix.fill()方法的帮助下,我们能够在一个给定的矩阵中填充一个标量值,并给出具有标量值的矩阵输出。
语法: matrix.fill(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]]