| Home | Trees | Indices | Help |
|---|
|
|
object --+
|
list --+
|
SquareMatrix --+
|
DecomposingPositiveMatrix
Symmetric matrix maintaining its own eigendecomposition.
If isinstance(C, DecomposingPositiveMatrix),
the eigendecomposion (the return value of eig) is stored in
the attributes eigenbasis and eigenvalues such that the i-th
eigenvector is:
[row[i] for row in C.eigenbasis] # or equivalently [C.eigenbasis[j][i] for j in range(len(C.eigenbasis))]
with eigenvalue C.eigenvalues[i] and hence:
C = C.eigenbasis x diag(C.eigenvalues) x C.eigenbasis^T
|
|||
| new empty list |
|
||
|
|||
|
|||
|
|||
|
Inherited from Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
|
Inherited from Inherited from |
|||
|
|||
|
Execute eigendecomposition of Assumes (for sake of simplicity) that |
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Sun Sep 10 15:07:27 2017 | http://epydoc.sourceforge.net |