Python | Numpy MaskedArray.__rtruediv__ Last Updated : 27 Mar, 2019 Summarize Comments Improve Suggest changes Share 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.__rtruediv__ we can divide a particular value that is provided as a parameter in the MaskedArray.__rtruediv__() method. Syntax: numpy.MaskedArray.__rtruediv__ Return: Divide self into others, and return a new masked array. Example #1 : In this example we can see that each and every element in an array is divided with the value given as a parameter in method MaskedArray.__rtruediv__(). Python3 1== # import the important module in python import numpy as np # make an array with numpy gfg = np.ma.array([22, 33, 44, 55, 77]) # applying MaskedArray.__rtruediv__() method print(gfg.__rtruediv__(11)) Output: [0.5 0.3333333333333333 0.25 0.2 0.14285714285714285] Example #2: Python3 1== # import the important module in python import numpy as np # make an array with numpy gfg = np.ma.array([[10, 20, 30, 40, 50], [110, 220, 330, 440, 550]]) # applying MaskedArray.__rtruediv__() method print(gfg.__rtruediv__(10)) Output: [[1.0 0.5 0.3333333333333333 0.25 0.2] [0.09090909090909091 0.045454545454545456 0.030303030303030304 0.022727272727272728 0.01818181818181818]] Comment More infoAdvertise with us Next Article Python | Numpy MaskedArray.__rtruediv__ S Shivam_k Follow Improve Article Tags : Python Python-numpy Python numpy-ndarray Practice Tags : python Similar Reads Python | Numpy MaskedArray.__truediv__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__truediv__ we can divide a particular value that is provided as a parameter in the MaskedArray.__truediv__() method. Syntax: numpy.MaskedArray.__truediv_ 1 min read Python | Numpy MaskedArray.__rfloordiv__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rfloordiv__ operator we can divide the self with a particular value (other) that is provided as a parameter to this function. Syntax: numpy.MaskedArray. 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.__rdivmod__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rdivmod__ we will get two arrays one is having elements that is divided by value that is provided in numpy.ma.__rdivmod__() method and second is having 2 min read Python | Numpy MaskedArray.__rand__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__rand__ method we can get the elements that is anded by the value that is provided as a parameter. Syntax: numpy.MaskedArray.__rand__ Return: Return valu 1 min read Like