how do i use the in-built inv function to calculate a matrix inverse and then calculate A-1A and AA-1.
조회 수: 3 (최근 30일)
이전 댓글 표시
how do i use the in-built inv function to calculate a matrix inverse and then calculate A-1A and AA-1.
댓글 수: 1
채택된 답변
Cam Salzberger
2017년 9월 6일
Hello David,
Strictly speaking, you would do it like this:
Ainv = inv(A);
Ainv*A
A*Ainv
However, as Stephen pointed out, there are faster and more accurate methods for calculating the inverse when you plan to solve linear equations or include it in some matrix algebra. These two commands are mathematically equivalent, but will be faster and more precise:
A\A % equivalent to Ainv*A
A/A % equivalent to A*Ainv
-Cam
댓글 수: 2
Cam Salzberger
2017년 9월 6일
편집: Cam Salzberger
2017년 9월 6일
Well, if line 2 of that file is:
Inverse = %calculate the inverse of a matrix with the inv function
then that looks incomplete to me. Maybe you should just remove those lines, and keep it to the other lines only.
-Cam
추가 답변 (1개)
James Tursa
2017년 9월 6일
The comment character % needs to be at the beginning of the comments. So these lines
Inverse = %calculate the inverse of a matrix with the inv function
Result1 = %calculate Inverse times A
Result2 = %calculate A times Inverse
should be this instead
% Inverse = calculate the inverse of a matrix with the inv function
% Result1 = calculate Inverse times A
% Result2 = calculate A times Inverse
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!