Open In App

numpy.empty_like() in Python

Last Updated : 29 Nov, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
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 make subclass of a or not
Return :
array with the same shape and type as a given array.
Python
# Python Program illustrating
# numpy.empty_like method

import numpy as geek

a = geek.empty_like([2, 2], dtype = int)
print("\nMatrix a : \n", a)

c = a = ([1,2,3], [4,5,6])
print("\nMatrix c : \n", geek.empty_like(c))
Output :
Matrix a : 
 [  16843008 1058682594]

Matrix c : 
 [[0 0 0]
 [0 0 0]]
Note : These codes won’t run on online-ID. Please run them on your systems to explore the working.

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy