
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
AmitDiwan has Published 10744 Articles

AmitDiwan
125 Views
To AND every element of a masked array by a given scalar value, use the ma.MaskedArray.__iand__() method in Python Numpy. Returns self&=value. A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, ... Read More

AmitDiwan
201 Views
To expand the shape of an array, use the numpy.expand_dims() method. Insert a new axis that will appear at the axis position in the expanded array shape. The function returns the View of the input array with the number of dimensions increased.NumPy offers comprehensive mathematical functions, random number generators, linear ... Read More

AmitDiwan
119 Views
To Right Shift every element of a masked array by a given scalar value, use the ma.MaskedArray.__irshift__() method in Python Numpy.A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or an ... Read More

AmitDiwan
303 Views
To produce an object that mimics broadcasting, use the numpy.broadcast() method in Python Numpy. A set of arrays is said to be broadcastable if the above rules produce a valid result and one of the following is true −Arrays have exactly the same shape.Arrays have the same number of dimensions ... Read More

AmitDiwan
180 Views
To Left Shift every element of a masked array by a given scalar value, use the ma.MaskedArray.__ilshift__() method in Python Numpy. A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, or ... Read More

AmitDiwan
125 Views
To roll the specified axis backwards, until it lies in a given position, use the numpy.moveaxis() method in Python Numpy. Here, The 1st parameter is the Input arrayThe 2nd parameter is the axis to be rolled. The positions of the other axes do not change relative to one another.The 3rd ... Read More

AmitDiwan
116 Views
To raise each and every element of a masked array to a given scalar value, use the ma.MaskedArray.__ipow__() method in Python Numpy. A masked array is the combination of a standard numpy.ndarray and a mask. A mask is either nomask, indicating that no value of the associated array is invalid, ... Read More

AmitDiwan
1K+ Views
To move axes of an array to new positions, use the numpy.moveaxis() method in Python Numpy. Here, the 1st parameter is the array whose axes should be reordered. The 2nd parameter is the source int or sequence of int i.e. original positions of the axes to move. These must be ... Read More

AmitDiwan
134 Views
To shift the bits of an integer to the left, use the numpy.left_shift() method in Python Numpy. We have set the count of shifts as a new array.Bits are shifted to the left by appending x2 0s at the right of x1. Since the internal representation of numbers is in ... Read More

AmitDiwan
218 Views
For a 1-D iterator over the array, use the numpy.flat() method in Python Numpy. This is a numpy.flatiter instance, which acts similarly to, but is not a subclass of, Python’s built-in iterator object.NumPy offers comprehensive mathematical functions, random number generators, linear algebra routines, Fourier transforms, and more. It supports a ... Read More