numpy 1.22.4 Pypi GitHub Homepage
Other Docs
ParametersReturnsBackRef
full(shape, fill_value, dtype=None, order='C', *, like=None)

Parameters

shape : int or sequence of ints

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

fill_value : scalar or array_like

Fill value.

dtype : data-type, optional

The desired data-type for the array The default, None, means

np.array(fill_value).dtype .

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

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

like : array_like

Reference object to allow the creation of arrays which are not NumPy arrays. If an array-like passed in as like supports the __array_function__ protocol, the result will be defined by it. In this case, it ensures the creation of an array object compatible with that passed in via this argument.

versionadded

Returns

out : ndarray

Array of fill_value with the given shape, dtype, and order.

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

See Also

empty

Return a new uninitialized array.

full_like

Return a new array with shape of input filled with value.

ones

Return a new array setting values to one.

zeros

Return a new array setting values to zero.

Examples

>>> np.full((2, 2), np.inf)
array([[inf, inf],
       [inf, inf]])
>>> np.full((2, 2), 10)
array([[10, 10],
       [10, 10]])
>>> np.full((2, 2), [1, 2])
array([[1, 2],
       [1, 2]])
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

numpy.polynomial.polynomial.polyfit numpy.zeros numpy.full_like numpy.empty numpy.ones numpy.array

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /numpy/core/numeric.py#289
type: <class 'function'>
Commit: