Python Numpy MaskedArray.__rsub__

numpy.ma.MaskedArray类是ndarray的一个子类,旨在操作有缺失数据的数字数组。在Numpy MaskedArray.__rsub__的帮助下,我们可以减去MaskedArray.__rsub__()方法中作为参数提供的一个特定值。数组中的每一个元素都将被减去数值。

语法: numpy.MaskedArray.__rsub__

返回:从其他数组中减去自己,并返回一个新的屏蔽数组。

例子#1 :
在这个例子中,我们可以看到,数组中的每一个元素都被减去了MaskedArray.__rsub__()方法中作为参数给出的值。记住一件事,它对双倍类型的值不起作用。

# import the important module in python 
import numpy as np 
  
# make an array with numpy 
gfg = np.ma.array([11, 22, 23, 24, 25]) 
  
# applying MaskedArray.__rsub__() method 
print(gfg.__rsub__(5)) 

输出:

[ -6 -17 -18 -19 -20]

示例 #2:

# import the important module in python 
import numpy as np 
  
# make an array with numpy 
gfg = np.ma.array([[21, 22, 23, 24, 25], 
                [26, 25, 24, 23, 22]]) 
  
# applying MaskedArray.__rsub__() method 
print(gfg.__rsub__(5)) 

输出:

[[-16 -17 -18 -19 -20]
 [-21 -20 -19 -18 -17]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程