Skip to Content
Mastering Numerical Computing with NumPy
book

Mastering Numerical Computing with NumPy

by Umit Mert Cakmak, Tiago Antao, Mert Cuhadaroglu
June 2018
Intermediate to advanced
248 pages
5h 27m
English
Packt Publishing
Content preview from Mastering Numerical Computing with NumPy

Cholesky decomposition

If you have a square matrix, you can also apply Cholesky decomposition, where you decompose a matrix (M) into two triangular matrices (U and UT). Cholesky decomposition helps you to simplify computational complexity. It can be summed up in the following formula:

M=UTU

The following is an illustration of Cholesky decomposition:

Let's see how it's implemented using numpy:

from numpy import arrayfrom scipy.linalg import choleskyM = np.array([[1, 3, 4],[2, 13, 15],[5, 31, 33]])print(M)# Output[[ 1  3  4] [ 2 13 15] [ 5 31 33]]L = cholesky(M)print(L)# Output[[1.         3.         4.        ] [0.         2.         1.5       ][0.         0.         3.84057287]]L.T.dot(L)# Outputarray([[ ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Numerical Computing with Python

Numerical Computing with Python

Pratap Dangeti, Allen Yu, Claire Chung, Aldrin Yim
Scientific Computing with Python - Second Edition

Scientific Computing with Python - Second Edition

Claus Führer, Claus Fuhrer, Jan Erik Solem, Olivier Verdier
SciPy and NumPy

SciPy and NumPy

Eli Bressert

Publisher Resources

ISBN: 9781788993357Supplemental Content