Deriving X from X'X
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I am hoping someone can help me determine the n x k matrix X when the k x k matrix X'X is given using Matlab. Please share any coding tips! Many thanks!!
댓글 수: 2
Walter Roberson
2016년 10월 2일
if n > k then there will cannot be a unique solution, as k x k would not have enough information to find n x k when n > k.
If n < k then round-off error has the potential to be a problem.
답변 (1개)
Jang geun Choi
2016년 10월 2일
편집: Jang geun Choi
2016년 10월 2일
n=2;
k=3;
X=rand(n,k); % make sample matrix X
Xn=X'*X
Is it right what you want?
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!