Python Numpy matrix.getfield()
在Numpy matrix.getfield()方法的帮助下,我们可以得到字段矩阵,这意味着字段是矩阵的一个视图,其数据类型与我们给定矩阵的大小相同。
语法: matrix.getfield()
返回:返回字段矩阵
例子#1 :
在这个例子中,我们可以看到,我们能够在matrix.getfield()方法的帮助下获得字段矩阵。
# import the important module in python
import numpy as np
# make matrix with numpy
gfg = np.matrix('[6, 1; 2, 3]')
# applying matrix.getfield() method
geeks = gfg.getfield(int)
print(geeks)
输出:
[[6 1]
[2 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.getfield() method
geeks = gfg.getfield(int)
print(geeks)
输出:
[[1 2 3]
[4 5 6]
[7 8 9]]