필터 지우기
필터 지우기

How do I solve for column vector from a matrix

조회 수: 1 (최근 30일)
Suma
Suma 2014년 3월 6일
답변: Jos (10584) 2014년 3월 7일
Hello,
I want to find column matrix [a1 a2]'
[a1 a2]'*[a1 a2] = [1 0; 1 0];
how do I do that?
thanks
  댓글 수: 5
Suma
Suma 2014년 3월 6일
notice that [a1 a2]' is a column vector and [a1 a2] a row vector which are being multiplied
Matt J
Matt J 2014년 3월 6일
편집: Matt J 2014년 3월 6일
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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jos (10584)
Jos (10584) 2014년 3월 7일
(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!

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by