numpy.matlib.empty(shape, dtype=None, order='C') [source]
Return a new matrix of given shape and type, without initializing entries. Parameters:
shape : int or tuple of int Shape of the empty matrix. dtype : data-type, optional Desired output data-type. order : {?C?, ?F?}, optional Whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory. See also empty_like, zeros Notes empty, unlike zeros, does not set the matrix values to ze