Python Numpy matrix.put()
在Numpy matrix.put()方法的帮助下,我们可以通过传递索引和值在一个给定的矩阵中放置值。
语法: matrix.put(index, value)
返回:返回新矩阵
例子#1 :
在这个例子中,我们可以看到,在matrix.put()方法的帮助下,我们能够将给定的矩阵中的值放入。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[64, 1; 12, 3]')
# applying matrix.put() method
gfg.put((0, 1), 45)
print(gfg)
输出:
[[45 45]
[12 3]]
例子#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; 7, 8, -9]')
# applying matrix.put() method
gfg.put(2, 43)
print(gfg)
输出:
[[ 1 2 43]
[ 4 5 6]
[ 7 8 -9]]