1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
---
title: mtx_eig
description: eigenvalue decomposition of a matrix
categories:
- object
pdcategory: Matrix Transformation
see_also:
- mtx_svd
inlets:
1st:
- type: matrix
description: \(n\times n\) matrix \(\boldsymbol A\) to decompose
outlets:
1st:
- type: list
description: list of real parts of the \(n\) eigenvalues \(\boldsymbol \sigma\)
2nd:
- type: list
description: list of imaginary parts of the \(n\) eigenvalues \(\boldsymbol \sigma\)
3:
- type: matrix
description: \(n\times n\) real part of the eigenvector matrix \(\boldsymbol V\)
4:
- type: matrix
description: \(n\times n\) imaginary part of the eigenvector matrix \(\boldsymbol V\)
draft: false
---
This object depends on the GNU Scientific Library. The matrices lists involved have the properties:
$$ \boldsymbol A = \boldsymbol V \operatorname{diag}\lbrace \boldsymbol \sigma\rbrace \boldsymbol V^{-1} $$
|