How do I solve for column vector from a matrix
Afficher commentaires plus anciens
Réponses (1)
Jos (10584)
le 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!
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!