Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/eigenkronecker.R
Computes eigenvalues and eigenvectors of the kronecker product of a matrix with an identity matrix.
1 | eigenkronecker(x, n)
|
x |
a numeric or complex symmetric matrix whose spectral decomposition is to be computed. Logical matrices are coerced to numeric. |
n |
dimension of the identity matrix. |
Only symmetric matrices are considered.
The spectral decomposition of kronecher product between x
and
an identity matrix of dimesion n
is returned as a list with
components
values |
a vector containing the eigenvalues. |
vectors |
a matrix whose columns contain the eigenvectors. |
Claudio Agostinelli and Giovanni Saraceno
R.A. Horn and C.R. Johnson (1994) Topics in Matrix Analysis, Cambridge University Press. Theorem 4.2.12.
1 | eigenkronecker(x=cbind(c(1,-1), c(-1,1)), n=2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.