Deriving X from X'X

3 visualizaciones (últimos 30 días)
Colette Salemi
Colette Salemi el 2 de Oct. de 2016
Comentada: Colette Salemi el 6 de Oct. de 2016
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 comentarios
Walter Roberson
Walter Roberson el 2 de Oct. de 2016
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.
Colette Salemi
Colette Salemi el 6 de Oct. de 2016
Thank you! I was working on a problem set where we were provided with X'X, and my first instinct was to try to derive X. As you point out this isn't possible with the information given (instead we used the info in X'X). Thanks again for your help!

Iniciar sesión para comentar.

Respuestas (1)

Jang geun Choi
Jang geun Choi el 2 de Oct. de 2016
Editada: Jang geun Choi el 2 de Oct. de 2016
n=2;
k=3;
X=rand(n,k); % make sample matrix X
Xn=X'*X
Is it right what you want?

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by