How do I solve for column vector from a matrix

1 visualización (últimos 30 días)
Suma
Suma el 6 de Mzo. de 2014
Respondida: Jos (10584) el 7 de Mzo. de 2014
Hello,
I want to find column matrix [a1 a2]'
[a1 a2]'*[a1 a2] = [1 0; 1 0];
how do I do that?
thanks
  5 comentarios
Suma
Suma el 6 de Mzo. de 2014
notice that [a1 a2]' is a column vector and [a1 a2] a row vector which are being multiplied
Matt J
Matt J el 6 de Mzo. de 2014
Editada: Matt J el 6 de Mzo. de 2014
Yep. In addition to being symmetric, the left hand side expression is also rank 1. That means the right hand side would at least have to have those same properties.

Iniciar sesión para comentar.

Respuestas (1)

Jos (10584)
Jos (10584) el 7 de Mzo. de 2014
(1) [a ; b] * [a b] = [a*a a*b ; b*a b*b] % by definition
(2) [a ; b] * [a b] = [1 0 ; 1 0] % by request
=> b*b = 0 => b is 0
b*a = 1 => b is not 0
Impossible!

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by