eigen_system | R Documentation |
This helper function returns the eigenvalues in lambda and the left and right eigenvectors in forwards and backwards
eigen_system(mat)
mat |
(matrix) a square matrix |
a list with three elements:
lambda
: eigenvalues
forwards
: left eigenvector
backwards
: right eigenvector
mat_T0 <- rbind(c(1-0.01,0.01,0),
c(0.01,1-0.02,0.01),
c(0,0.01,1-0.01))
eigen_system(mat_T0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.