Python | Numpy MaskedArray.__div__ Last Updated : 27 Mar, 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.__div__ we can divide a particular value that is provided as a parameter in the MaskedArray.__div__() method. Syntax: numpy.MaskedArray.__div__ Return: Divide other into self, 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.__div__(). 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.__div__() method print(gfg.__div__(11)) Output: [2.0 3.0 4.0 5.0 7.0] 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], [11, 22, 33, 44, 55]]) # applying MaskedArray.__div__() method print(gfg.__div__(5)) Output: [[2.0 4.0 6.0 8.0 10.0] [2.2 4.4 6.6 8.8 11.0]] Comment More infoAdvertise with us Next Article Python | Numpy MaskedArray.__div__ S Shivam_k Follow Improve Article Tags : Python Python-numpy Python numpy-ndarray Practice Tags : python Similar Reads Python | Numpy MaskedArray.__divmod__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__divmod__ we will get two arrays one is having elements that is divided by value that is provided in numpy.ma.__divmod__() method and second is having el 2 min read Python | Numpy MaskedArray.__ior__() numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__ior__we can get the elements that is OR by the value that is provided as a parameter in the MaskedArray.__ior__() method. Syntax: numpy.MaskedArray.__io 1 min read Python | Numpy MaskedArray.__and__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__and__ method we can get the elements that is anded by the value that is provided as a parameter. Syntax: numpy.MaskedArray.__and__ Return: Return self 1 min read Python | Numpy MaskedArray.__add__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__add__ we can add a particular value that is provided as a parameter in the MaskedArray.__add__() method. Value will be added to each and every element i 1 min read Python | Numpy MaskedArray.__floordiv__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__floordiv__ operator we can divide a particular value that is provided as a parameter to this function. Syntax: numpy.MaskedArray.__floordiv__ Return: Di 1 min read Python | Numpy MaskedArray.__iand__() numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__iand__we can get the elements that is anded by the value that is provided as a parameter in the MaskedArray.__iand__() method. Syntax: numpy.MaskedArray 1 min read Python | Numpy MaskedArray.__ixor__() numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__ixor__we can get the elements that is XOR by the value that is provided as a parameter in the MaskedArray.__ixor__() method. Syntax: numpy.MaskedArray._ 1 min read Python | Numpy MaskedArray.__lt__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__lt__ operator we can find that which element in an array is less than the value which is provided in the parameter. Syntax: numpy.MaskedArray.__lt__ Ret 1 min read Python | Numpy MaskedArray.__ge__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__ge__ operator we can find that which element in an array is greater than or equal to the value which is provided in the parameter. Syntax: numpy.MaskedA 1 min read Python | Numpy MaskedArray.__gt__ numpy.ma.MaskedArray class is a subclass of ndarray designed to manipulate numerical arrays with missing data. With the help of Numpy MaskedArray.__gt__ operator we can find that which element in an array is greater than the value which is provided in the parameter. Syntax: numpy.MaskedArray.__gt__ 1 min read Like