I have a difference matrix from daily changes which I use to construct a covariance matrix. On this covariance matrix I use the power method to get the eigenvalues. The power method yields exactly the same eigenvalues as the eig function in matlab, so that should confirm my method is working. The only problem I have afterwards is that I don't know how to link the components to points in the covariance matrix. If I can't do this I don't know which of the points (dimensions) is the most important component. Also the eigenvector * covariance * eigenvector' doesn't give me the eigenvalue diagonal matrix because I think the eigenvalues are ranked from largest to smallest.
How can I link the eigenvalues and eigenvector to the components in the covariance matrix?