multiplication of multiple matrices
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Walter Roberson
2013-8-16
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 个评论
Walter Roberson
2013-8-20
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 ?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!