aesara.tensor.full#
- aesara.tensor.full(shape, fill_value, dtype=None)[source]#
Return a new array of given shape and type, filled with
fill_value
.See
numpy.full
.- Parameters:
shape (int or sequence of ints) – Shape of the new array, e.g.,
(2, 3)
or2
.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
.