show det(A) = det(A') ?
Show older comments
A=[3 4;2 1]
det(A)=det(A')
Answers (1)
But it's not true!
A=rand(200);
isequal(det(A),det(A.'))
1 Comment
Fine, it's true within floating point precision:
A=rand(200);
percent_difference=(det(A)-det(A.'))/det(A)*100
Categories
Find more on State-Space Control Design and Estimation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!