Python

np.ones() – Create 1D / 2D Numpy Array filled with ones (1’s)

In this article, we will discuss how to create 1D or 2D numpy arrays filled with ones (1s). numpy.ones() Python’s Numpy module provides a function to create a numpy array of given shape & type and filled with 1’s i.e, Arguments: shape: Shape of the numpy array. Single integer or sequence of integers. dtype: (Optional)

np.ones() – Create 1D / 2D Numpy Array filled with ones (1’s) Read More »

Scroll to Top