Wednesday, January 28, 2026
HomeLanguagesnumpy matrix operations | eye() function

numpy matrix operations | eye() function

numpy.matlib.eye() is another function for doing matrix operations in numpy. It returns a matrix with ones on the diagonal and zeros elsewhere.

Syntax : numpy.matlib.eye(n, M=None, k=0, dtype=’float’, order=’C’)

Parameters :
n : [int] Number of rows in the output matrix.
M : [int, optional] Number of columns in the output matrix, defaults is n.
k : [int, optional] Index of the diagonal. 0 refers to the main diagonal, a positive value refers to an upper diagonal, and a negative value to a lower diagonal.Default is 0.
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 n x M matrix where all elements are equal to zero, except for the k-th diagonal, whose values are equal to one.

Code #1 :




# Python program explaining
# numpy.matlib.eye() function
  
# importing matrix library from numpy
import numpy as geek
import numpy.matlib
  
# desired 3 x 3 output matrix 
out_mat = geek.matlib.eye(3, k = 0
print ("Output matrix : ", out_mat) 


Output :

Output matrix :  
[[ 1.  0.  0.]
 [ 0.  1.  0.]
 [ 0.  0.  1.]]

 

Code #2 :




# Python program explaining
# numpy.matlib.eye() function
  
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
  
# desired 4 x 5 output matrix 
out_mat = geek.matlib.eye(n = 4, M = 5, k = 1, dtype = int
print ("Output matrix : ", out_mat) 


Output :

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

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6848 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6915 POSTS0 COMMENTS