Python | Numpy MaskedArray.__rrshift__ Last Updated : 08 Apr, 2019 Comments Improve Suggest changes Like Article Like Report numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rrshift__ method we can get the elements that is right shifted by the value that is provided as a parameter. Syntax: numpy.MaskedArray.__rrshift__ Return: Return value>>self. Example #1 : In this example we can see that every element is right shifted by the value that is passed as a parameter. Python3 1== # import the important module in python import numpy as np # make an array with numpy gfg = np.ma.array([1, 2, 3, 4, 5]) # applying MaskedArray.__rrshift__() method print(gfg.__rrshift__(3)) Output: [1 0 0 0 0] Example #2: Python3 1== # import the important module in python import numpy as np # make an array with numpy gfg = np.ma.array([[1, 2, 3, 4, 5], [6, 5, 4, 3, 2]]) # applying MaskedArray.__rrshift__() method print(gfg.__rrshift__(4)) Output: [[2 1 0 0 0] [0 0 0 0 1]] Comment More infoAdvertise with us Next Article Python | Numpy MaskedArray.__rrshift__ S Shivam_k Follow Improve Article Tags : Python Python-numpy Python numpy-ndarray Practice Tags : python Similar Reads Python | Numpy MaskedArray.__rshift__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rshift__ method we can get the elements that is right shifted by the value that is provided as a parameter. Syntax: numpy.MaskedArray.__rshift__ Return: 1 min read Python | Numpy MaskedArray.__rlshift__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rlshift__ method we can get the elements that is right shifted by the value that is provided as a parameter. Syntax: numpy.MaskedArray.__rlshift__ Retur 1 min read Python | Numpy MaskedArray.__ror__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__ror__ method we can get the elements that is OR with the value that is provided as a parameter. Syntax: numpy.MaskedArray.__ror__ Return: Return value|s 1 min read Python | Numpy MaskedArray.__rsub__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rsub__ we can subtract a particular value that is provided as a parameter in the MaskedArray.__rsub__() method. Value will be subtracted from each and e 1 min read Python | Numpy MaskedArray.__rxor__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rxor__ method we can get the elements that is XOR with the value that is provided as a parameter. Syntax: numpy.MaskedArray.__rxor__($self, value, /) Re 1 min read Like