polar | R Documentation |
Converts the complex matrices P and D into matrices of eigenvectors and eigenvalues with real entries.
polar(P,D)
P |
the eigenvectors from an eigenvalue decomposition. |
D |
the eigenvalues from an eigenvalue decomposition. |
P the polar form (real-valued) matrix of eigenvectors. D the polar form (real-valued) matrix of eigenvalues.
Kyle Caudle
Randy Hoover
Jackson Cates
Everett Sandbo
Bhatia, R. (2013). Matrix analysis (Vol. 169). Springer Science & Business Media.
z <- complex(real = rnorm(16), imag = rnorm(16))
M <- matrix(z,nrow=4)
decomp <- eigen(M)
polar(decomp$vectors,decomp$values)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.