dtype
Applies to: python
A NumPy dtype is the data type stored in an array, such as float64, int32, or bool.
a = np.array([1, 2, 3], dtype=np.float64)
a.dtype
See also: numpy-array, data-type
Applies to: python
A NumPy dtype is the data type stored in an array, such as float64, int32, or bool.
a = np.array([1, 2, 3], dtype=np.float64)
a.dtype
See also: numpy-array, data-type