inv matrix command error
1 次查看(过去 30 天)
显示 更早的评论
I am using a code my TA gave us to use for our lab report (had to edit some of his code to make it work so far) and he wants us to use the inv command and I have no experience with this. Any ideas on what to adjust to make it work?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/192039/image.png)
5 个评论
采纳的回答
James Tursa
2018-10-18
编辑:James Tursa
2018-10-18
Normally the inv is applied to the left hand side coefficients, since people usually write the "A" matrix on the left and the "b" vector on the right in an Ax=b linear system. So I am guessing you need to change the inv( ) calculation to this:
V = inv(LHS)*RHS;
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!