Return the number of elements along a given axis.
a : array_like
Input data.
axis : int, optional
Axis along which the elements are counted. By default, give the total number of elements.
element_count : int
Number of elements along the specified axis.
See also
Examples
>>> a = np.array([[1,2,3],[4,5,6]]) >>> np.size(a) 6 >>> np.size(a,1) 3 >>> np.size(a,0) 2
numpy.ma.shape
numpy.ma.ravel
Enter search terms or a module, class or function name.