numpy.ma.flatten_structured_array#

ma.flatten_structured_array(a)[source]#

展平结构化数组。

输出的数据类型选择为可以表示所有(嵌套)字段。

参数:
a结构化数组
返回值:
output掩码数组或 ndarray

如果输入是掩码数组,则为展平的掩码数组,否则为标准 ndarray。

示例

>>> import numpy as np
>>> ndtype = [('a', int), ('b', float)]
>>> a = np.array([(1, 1), (2, 2)], dtype=ndtype)
>>> np.ma.flatten_structured_array(a)
array([[1., 1.],
       [2., 2.]])