- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Return an array of ones with the same shape and type as a given array in Numpy
To return an array of ones with the same shape and type as a given array, use the numpy.ones_like() method in Python Numpy. The 1st parameter here is the shape and data-type of array-like that define these same attributes of the returned array.
The dtypes overrides the data type of the result. The 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.
The subok parameter, 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.
Steps
At first, import the required library −
import numpy as np
Create a new array using the numpy.array() method in Python Numpy −
arr = np.array([[35, 56, 66], [88, 73, 98]])
Display the array −
print("Array...
",arr)
Get the type of the array −
print("
Array type...
", arr.dtype)
Get the dimensions of the Array −
print("
Array Dimensions...
", arr.ndim)
To return an array of ones with the same shape and type as a given array, use the numpy.ones_like() method in Python Numpy. The 1st parameter here is the shape and data-type of array-like that define these same attributes of the returned array −
newArr = np.ones_like(arr) print("
New Array..
", newArr)
Get the type of the new array −
print("
New Array type...
", newArr.dtype)
Get the dimensions of the new array −
print("
New Array Dimensions...
", newArr.ndim)
Example
import numpy as np # Create a new array using the numpy.array() method in Python Numpy arr = np.array([[35, 56, 66], [88, 73, 98]]) # Display the array print("Array...
",arr) # Get the type of the array print("
Array type...
", arr.dtype) # Get the dimensions of the Array print("
Array Dimensions...
", arr.ndim) # To return an array of ones with the same shape and type as a given array, use the numpy.ones_like() method in Python Numpy # The 1st parameter here is the shape and data-type of array-like that define these same attributes of the returned array. newArr = np.ones_like(arr) print("
New Array..
", newArr) # Get the type of the new array print("
New Array type...
", newArr.dtype) # Get the dimensions of the new array print("
New Array Dimensions...
", newArr.ndim)
Output
Array... [[35 56 66] [88 73 98]] Array type... int64 Array Dimensions... 2 New Array.. [[1 1 1] [1 1 1]] New Array type... int64 New Array Dimensions... 2
- Related Articles
- Return an array of zeros with the same shape and type as a given array in Numpy
- Return a new array with the same shape and type as given array in Numpy
- Return a new array with the same shape and type as a given array in Numpy
- Return a full array with the same shape and type as a given array in Numpy
- Return an array of zeroes with the same shape as a given array but with a different type in Numpy
- Return a new array with the same shape and type as a given array and change the order in Numpy
- Return a new array with the same shape as a given array but change the default type in Numpy
- Return a new array of given shape filled with ones in Numpy
- Return a new array of a given shape filled with ones in Numpy
- Return a new array of given shape filled with ones and also set the desired data-type in Numpy
- Return a new array with the same shape and type as a given array and change the order to K style in Numpy
- Return a new array with the same shape and type as a given array and change the order to C style in Numpy
- Return a new array of given shape and type, filled with array-like in Numpy
- Return a new array of given shape filled with ones but with different datatype in Numpy
- Return a new array of given shape and type filled with a fill value in Numpy
