Wednesday, October 8, 2025
HomeLanguagesnumpy matrix operations | empty() function

numpy matrix operations | empty() function

numpy.matlib.empty() is another function for doing matrix operations in numpy.It returns a new matrix of given shape and type, without initializing entries.

Syntax : numpy.matlib.empty(shape, dtype=None, order=’C’)

Parameters :
shape : [int or tuple of int] Shape of the desired output empty matrix.
dtype : [optional] Desired output data-type.
order : Whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory.

Return : A new matrix of given shape and type,

Code #1 :




# Python program explaining
# numpy.matlib.empty() function
Ā Ā 
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
Ā Ā 
# desired output matrixĀ 
out_mat = geek.matlib.empty((2, 3))Ā 
print ("Output matrix : ", out_mat)Ā 


Output :

Output matrix :  [[  6.93621940e-310   2.43141878e-316   6.93621669e-310]
 [  6.93621669e-310   6.93621553e-310   6.93621553e-310]]

Ā 

Code #2 :




# Python program explaining
# numpy.matlib.empty() function
Ā Ā 
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
Ā Ā 
# desired output matrixĀ 
out_mat = geek.matlib.empty((2, 3), dtype = int, order = 'C')Ā 
print ("Output matrix : ", out_mat)Ā 


Output :

Output matrix :  [[140133380791224 140133380791224 140133356100528]
 [140133356100336 140133356100592 140133343343704]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32342 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6712 POSTS0 COMMENTS
Nicole Veronica
11875 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11937 POSTS0 COMMENTS
Shaida Kate Naidoo
6833 POSTS0 COMMENTS
Ted Musemwa
7092 POSTS0 COMMENTS
Thapelo Manthata
6786 POSTS0 COMMENTS
Umr Jansen
6789 POSTS0 COMMENTS