numpoly.full_like#
- numpoly.full_like(a: numpoly.typing.PolyLike, fill_value: ArrayLike, dtype: DTypeLike | None = None, order: str = 'K', subok: bool = True, shape: Sequence[int] | None = None) ndpoly[source]#
Return a full array with the same shape and type as a given array.
- Args:
- a:
The shape and data-type of a define these same attributes of the returned array.
- fill_value:
Fill value. Must be broadcast compatible with shape.
- dtype:
Overrides the data type of the result.
- order:
Overrides the memory layout of the result. ‘C’ means C-order, ‘F’ means F-order, ‘A’ means ‘F’ if a is Fortran contiguous, ‘C’ otherwise. ‘K’ means match the layout of a as closely as possible.
- subok:
If True, then the newly created array will use the sub-class type of ‘a’, otherwise it will be a base-class array. Defaults to True.
- shape:
Overrides the shape of the result. If order=’K’ and the number of dimensions is unchanged, will try to keep order, otherwise, order=’C’ is implied.
- Return:
Array of fill_value with the same shape and type as a.
- Example:
>>> poly = numpoly.monomial(3) >>> poly polynomial([1, q0, q0**2]) >>> q0, q1 = numpoly.variable(2) >>> numpoly.full_like(poly, q1-1.) polynomial([q1-1, q1-1, q1-1])