Returns the Eigenvalue Decomposition of the given matrix. Equivalent to R's eig function.
Returns:
a map containing:
:values -- vector of eigenvalues
:vectors -- the matrix of eigenvectors
Examples:
(use 'incanter.core)
(def foo (matrix (range 9) 3))
(decomp-eigenvalue foo)
References:
http://en.wikipedia.org/wiki/Eigenvalue_decomposition
http://incanter.org/docs/parallelcolt/api/cern/colt/matrix/tdouble/algo/decomposition/DoubleEigenvalueDecomposition.html
Comments top
No comments for decomp-eigenvalue. Log in to add a comment.