multiplication of multiple matrices
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Good Afternoon,
I know this is probably a silly question to ask but if I have matrices A, B, C and D. With the equation
D=A*(-B*C)
and I want to solve for C. Is there any possible way to do this?
I have thought of this. D=(A*-B)
C=D/E
Thanks,
Mel
0 commentaires
Réponse acceptée
Walter Roberson
le 16 Août 2013
Matrix multiplication is associative so A*(-B*C) is the same as -(A*B)*C . So you can use the \ matrix division operator between D and -(A*B)
3 commentaires
Walter Roberson
le 20 Août 2013
Is x a vector? If so then there is usually no unique solution.
Are we given any information restricting any of the arrays to be square ?
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!