numpy.ones_like() in Python Last Updated : 08 Mar, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The numpy.one_like() function returns an array of given shape and type as a given array, with ones. Syntax: numpy.ones_like(array, dtype = None, order = 'K', subok = True) Parameters : array : array_like input subok : [optional, boolean]If true, then newly created array will be sub-class of array; otherwise, a base-class array order : C_contiguous or F_contiguous C-contiguous order in memory(last index varies the fastest) C order means that operating row-wise on the array will be slightly quicker FORTRAN-contiguous order in memory (first index varies the fastest). F order means that column-wise operations will be faster. dtype : [optional, float(byDefault)] Data type of returned array. Returns : ndarray of ones having given shape, order and datatype. Python # Python Programming illustrating # numpy.ones_like method import numpy as geek array = geek.arange(10).reshape(5, 2) print("Original array : \n", array) b = geek.ones_like(array, float) print("\nMatrix b : \n", b) array = geek.arange(8) c = geek.ones_like(array) print("\nMatrix c : \n", c) Output: Original array : [[0 1] [2 3] [4 5] [6 7] [8 9]] Matrix b : [[ 1. 1.] [ 1. 1.] [ 1. 1.] [ 1. 1.] [ 1. 1.]] Matrix c : [1 1 1 1 1 1 1 1] Also, these codes won’t run on online-ID. Please run them on your systems to explore the working Comment More infoAdvertise with us Next Article numpy.ones_like() in Python M Mohit Gupta Improve Article Tags : Misc Python Python-numpy Python numpy-arrayCreation Practice Tags : Miscpython Similar Reads numpy.ones() in Python The numpy.ones() function returns a new array of given shape and type, with ones. Syntax: numpy.ones(shape, dtype = None, order = 'C') Parameters : shape : integer or sequence of integers order : C_contiguous or F_contiguous C-contiguous order in memory(last index varies the fastest) C order means t 2 min read numpy.full_like() in Python The numpy.full_like() function return a new array with the same shape and type as a given array.Syntax : numpy.full_like(a, fill_value, dtype = None, order = 'K', subok = True) Parameters : shape : Number of rows order : C_contiguous or F_contiguous dtype : [optional, float(by Default )] Data type o 2 min read numpy.empty_like() in Python numpy.empty_like(a, dtype = None, order = 'K', subok = True) : Return a new array with the same shape and type as a given array. Parameters : shape : Number of rows order : C_contiguous or F_contiguous dtype : [optional, float(by Default)] Data type of returned array. subok : [bool, optional] to mak 1 min read numpy.zeros_like() in Python This numpy method returns an array of given shape and type as given array, with zeros. Syntax: numpy.zeros_like(array, dtype = None, order = 'K', subok = True) Parameters : array : array_like input subok : [optional, boolean]If true, then newly created array will be sub-class of array; otherwise, a 2 min read numpy.find() in Python numpy.core.defchararray.find(arr, substring, start=0, end=None): Finds the lowest index of the sub-string in the specified range. Parameters: arr : array-like or string to be searched. substring : substring to search for. start, end : [int, optional] Range to search in. Returns : An integer array wi 1 min read Like