[ Web Proxy ]
URL:
Viewing: https://numpy.org/doc/stable/reference/generated/../generated/numpy.dtype.name.html [Back]  [Original]

numpy.dtype.name — NumPy v2.5 Manual
Back to top
Search the docs ...:

numpy.dtype.name#

attribute

dtype.name#

A bit-width name for this data-type.

Un-sized flexible data-type objects do not have this attribute.

Examples

Try it in your browser!
>>> import numpy as np
>>> x = np.dtype(float)
>>> x.name
'float64'
>>> x = np.dtype([('a', np.int32, 8), ('b', np.float64, 6)])
>>> x.name
'void640'

Web Proxy Viewer  |  New URL  |  Original Page