how to store eigen vectors of a matrix of huge dimension?
조회 수: 1 (최근 30일)
이전 댓글 표시
hi friends cheers!!!! I am doing a project on face recognition.please solve my problem. I have a matrix of huge dimension say 500 X 500.So it gives maximum 500 eigen vectors(if all eigen values are non zero). Now the problem is how to store these eigen vectors. I have to use them one by one further.Is it possible to store them in an array?
Thanks in advance...
댓글 수: 0
채택된 답변
Matt Fig
2011년 3월 1일
If X is your 500-by-500 array, then using:
[V,D] = eig(X)
will store the eigenvalues in array V.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!