Deteminate of a 12x12 symbolic matrix is equal to zero while it shouldn't

1 view (last 30 days)
I am trying to solve an eigenvalue problet in which i have to find the determinate of 12x12 symbolic matrix and then solve the equation to find the eigenvalues
every time itry to find the determinate using the det() function i have det(K) = 0 while it shouldn't.
  7 Comments
Walter Roberson
Walter Roberson on 27 Jan 2021
[V,D] = eig(K)
The determinant of K is prod(diag(D)). D will have two 0 values on the diagonal and 10 non-zero values, so the determinant will be 0.

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!