Eigen_complexSchur | R Documentation |
Complex Schur decomposition of a square matrix.
Eigen_complexSchur(M)
M |
real or complex square matrix |
See Eigen::ComplexSchur.
A list with the T
and U
matrices.
library(EigenR)
M <- cbind(c(3, 2i, 1+3i), c(1, 1i, 1), c(5, 0, -2i))
schur <- Eigen_complexSchur(M)
T <- schur$T
U <- schur$U
M - U %*% T %*% t(Conj(U))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.