show det(A) = det(A') ?

조회 수: 1 (최근 30일)
Majid Alomari
Majid Alomari 2020년 11월 18일
댓글: Matt J 2020년 11월 18일
A=[3 4;2 1]
det(A)=det(A')

답변 (1개)

Matt J
Matt J 2020년 11월 18일
But it's not true!
A=rand(200);
isequal(det(A),det(A.'))
ans = logical
0
  댓글 수: 1
Matt J
Matt J 2020년 11월 18일
Fine, it's true within floating point precision:
A=rand(200);
percent_difference=(det(A)-det(A.'))/det(A)*100
percent_difference = 4.1836e-11

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

카테고리

Help CenterFile Exchange에서 Detection에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by