
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
322 Views
Apply the ufunc outer() function to all pairs. The numpy.ufunc has functions that operate element by element on whole arrays. The ufuncs are written in C (for speed) and linked into Python with NumPy's ufunc facility. A universal function (or ufunc for short) is a function that operates on ndarrays ... Read More

AmitDiwan
139 Views
To OR a given scalar value with every element of a masked array, use the ma.MaskedArray.__ror__() 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
205 Views
To perform unbuffered in place operation on operand for elements specified by 'indices, use the numpy.ufunc.at() method in Python Numpy.The numpy.ufunc has functions that operate element by element on whole arrays. The ufuncs are written in C (for speed) and linked into Python with NumPy’s ufunc facility. A universal function ... Read More

AmitDiwan
137 Views
To OR every element of a masked array by a given scalar value, use the ma.MaskedArray.__or__() 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
192 Views
To Accumulate the result of applying the operator to all elements, use the numpy.accumulate() method in Python Numpy. For a multi-dimensional array, accumulate is applied along only one axis. We will apply along axis 0.The numpy.ufunc has functions that operate element by element on whole arrays. The ufuncs are written ... Read More

AmitDiwan
150 Views
To AND a given scalar value with every element of a masked array, use the ma.MaskedArray.__rand__() 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
126 Views
To AND every element of a masked array by a given scalar value, use the ma.MaskedArray.__and__() 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
145 Views
Right Shift a given scalar value by every element of a masked array, use the ma.MaskedArray.__rrshift__() 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
141 Views
Right Shift every element of a masked array by a given scalar value, use the ma.MaskedArray.__rshift__() 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
165 Views
Left Shift a given scalar value by every element of a masked array, use the ma.MaskedArray.__rlshift__() 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