numpy.ma.zeros()

numpy.ma.zeros

numpy.ma.zeros(shape, dtype=float, order='C') = <numpy.ma.core._convert2ma instance>

Return a new array of given shape and type, filled with zeros.

登录查看完整内容
Parameters:

shape : int or sequence of ints

Shape of the new array, e.g., (2, 3) or 2.

dtype : data-type, optional

The desired data-type for the array, e.g., numpy.int8. Default is numpy.float64.

order : {‘C’, ‘F’}, optional

Whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.