This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / matlib / zeros

function

numpy.matlib:zeros

source: build-install/usr/lib/python3.14/site-packages/numpy/matlib.py :111

Signature

def   zeros ( shape dtype = None order = C )

Summary

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

Parameters

shape : int or sequence of ints

Shape of the matrix

dtype : data-type, optional

The desired data-type for the matrix, default is float.

order : {'C', 'F'}, optional

Whether to store the result in C- or Fortran-contiguous order, default is 'C'.

Returns

out : matrix

Zero matrix of given shape, dtype, and order.

Notes

If shape has length one i.e. (N,), or is a scalar N, out becomes a single row matrix of shape (1,N).

Examples

import numpy.matlib
np.matlib.zeros((2, 3))
np.matlib.zeros(2)

See also

matlib.ones

Return a matrix of ones.

numpy.zeros

Equivalent array function.

Aliases

  • numpy.matlib.zeros