How do I solve for column vector from a matrix
Show older comments
Answers (1)
Jos (10584)
on 7 Mar 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!
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!