numpy.lib.format.descr_to_dtype#

lib.format.descr_to_dtype(descr)[源代码]#

返回基于给定描述的dtype.

这本质上是 dtype_to_descr 的反向操作.它将移除由,例如简单字段如 dtype(‘float32’) 创建的无值填充字段,然后将描述转换为其对应的 dtype.

参数:
descr对象

由 dtype.descr 检索到的对象.可以传递给 numpy.dtype 以复制输入的 dtype.

返回:
dtypedtype

由描述构建的 dtype.