Finding the determinant without det(a)

조회 수: 22 (최근 30일)
Ryan Driver
Ryan Driver 2022년 1월 27일
편집: DGM 2022년 1월 27일
I need to physically computate the determinant of 3x3 matrices and lower without using the det(a) function, rather loops. What's causing this error?
  댓글 수: 1
DGM
DGM 2022년 1월 27일
편집: DGM 2022년 1월 27일
Like Max, I'm guessing that matrix a1 isn't the expected size. In the future, it's best to post the code as formatted code instead of pictures so that people can troubleshoot it.
I'm just going to throw this out there. You can reuse the code for calculating the 2x2 case.
A = rand(3);
DA1 = det(A)
DA1 = 0.0476
DA2 = det33(A)
DA2 = 0.0476
function D = det22(A)
D = prod(A([1 4])) - prod(A([2 3]));
end
function D = det33(A)
D = A(1,1)*det22(A(2:3,2:3)) - A(1,2)*det22(A(2:3,[1 3])) + A(1,3)*det22(A(2:3,1:2));
end

댓글을 달려면 로그인하십시오.

채택된 답변

Max Heimann
Max Heimann 2022년 1월 27일
편집: Max Heimann 2022년 1월 27일
According to the error you are trying to access an index which is not part of the variable.
Are you sure a1 is a 3x3 matrix?
It looks like you are calling the function with a 2x3 matrix [1 2 3; 4 5 6]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by