
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
161 Views
To compute the bit-wise AND of two 1D arrays element-wise, use the numpy.bitwise_and() method in Python Numpy. Computes the bit-wise AND of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator &.The 1st and 2nd parameter are the arrays, only integer and ... Read More

AmitDiwan
664 Views
To compute the bit-wise AND of two 2D arrays element-wise, use the numpy.bitwise_and() method in Python Numpy. Computes the bit-wise AND of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator &.The 1st and 2nd parameter are the arrays, only integer and ... Read More

AmitDiwan
147 Views
To determine whether input is an instance of masked array, use the ma.isMaskedArray() method in Python Numpy. This function returns True if x is an instance of MaskedArray and returns False otherwise. Any object is accepted as input.A masked array is the combination of a standard numpy.ndarray and a mask. ... Read More

AmitDiwan
2K+ Views
To determine whether input has masked values, use the ma.is_masked() method in Python Numpy. Accepts any object as input, but always returns False unless the input is a MaskedArray containing masked values. Returns True if the array is a MaskedArray with masked values, False otherwise.A masked array is the combination ... Read More

AmitDiwan
559 Views
To compute the bit-wise AND of two arrays element-wise, use the numpy.bitwise_and() method in Python Numpy.Computes the bit-wise AND of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator &.The 1st and 2nd parameter are the arrays, only integer and boolean types ... Read More

AmitDiwan
703 Views
To compute the bit-wise AND of two arrays element-wise, use the numpy.bitwise_and() method in Python Numpy. Computes the bit-wise AND of the underlying binary representation of the integers in the input arrays. This ufunc implements the C/Python operator &.The 1st and 2nd parameter are the arrays, only integer and boolean ... Read More

AmitDiwan
293 Views
To build a block of matrix, use the numpy.block() method in Python Numpy. Here, we will build a block matrix from a list with depth two. Blocks in the innermost lists are concatenated along the last dimension (-1), then these are concatenated along the second-last dimension (-2), and so on ... Read More

AmitDiwan
187 Views
To build a block of matrix, use the numpy.block() method in Python Numpy. Here, we will build from list with depth one. . Blocks in the innermost lists are concatenated along the last dimension (-1), then these are concatenated along the second-last dimension (-2), and so on until the outermost ... Read More

AmitDiwan
167 Views
To join a sequence of arrays, use the numpy.stack() method in Python Numpy. The axis parameter specifies the index of the new axis in the dimensions of the result. Here, we have set axis 1.The function returns the stacked array has one more dimension than the input arrays. The axis ... Read More

AmitDiwan
131 Views
To join a sequence of arrays, use the numpy.stack() method in Python Numpy. The axis parameter specifies the index of the new axis in the dimensions of the result. If axis=0 it will be the first dimension and if axis=-1 it will be the last dimension.The function returns the stacked ... Read More