Friday, July 5, 2024
HomeLanguagesPythonPython | Numpy np.cholesky() method

Python | Numpy np.cholesky() method

With the help of np.cholesky() method, we can get the cholesky decomposition by using np.cholesky() method.

Syntax : np.cholesky(matrix)
Return : Return the cholesky decomposition.

Example #1 :
In this example we can see that by using np.cholesky() method, we are able to get the cholesky decomposition in the form of matrix using this method.




# import numpy
import numpy as np
  
a = np.array([[2, -3j], [5j, 15]])
# using np.cholesky() method
gfg = np.linalg.cholesky(a)
  
print(gfg)


Output :

[[1.41421356 + 0.j, 0. + 0.j]
[0. + 3.53553391j, 1.58113883 + 0.j]]

Example #2 :




# import numpy
import numpy as np
  
a = np.array([[12, -13j], [4j, 8]])
# using np.cholesky() method
gfg = np.linalg.cholesky(a)
  
print(gfg)


Output :

[[3.46410162 + 0.j, 0. + 0.j]
[0. + 1.15470054j, 2.5819889 + 0.j]]

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments