numpy.lib.format.descr_to_dtype#
- lib.format.descr_to_dtype(descr)[source]#
根据给定的描述返回一个 dtype。
这本质上是
dtype_to_descr
的反向操作。它将删除由例如简单字段(如 dtype('float32'))创建的无值填充字段,然后将描述转换为其对应的 dtype。- 参数:
- descr对象
由 dtype.descr 获取的对象。可以传递给
numpy.dtype
以复制输入 dtype。
- 返回值:
- dtypedtype
由描述构造的 dtype。