| [ Web Proxy ] |
| Viewing: https://numpy.org/doc/stable/reference/generated/../c-api/../generated/numpy.ndim.html#numpy.ndim | [Back] [Original] |
Return the number of dimensions of an array.
Input array. If it is not already an ndarray, a conversion is attempted.
The number of dimensions in a. Scalars are zero-dimensional.
See also
ndarray.ndimequivalent method
shapedimensions of array
ndarray.shapedimensions of array
Examples
>>> import numpy as np
>>> np.ndim([[1,2,3],[4,5,6]])
2
>>> np.ndim(np.array([[1,2,3],[4,5,6]]))
2
>>> np.ndim(1)
0
| Web Proxy Viewer | New URL | Original Page |