please guide me how to find the det of this 24*24 order symbolic matrix, it is showing that 25000 word limit is exceeded.
    6 views (last 30 days)
  
       Show older comments
    
M=[A1 A2 A3 A4;B1 B2 B3 B4;C1 C2 C3 C4;D1 D2 D3 D4]; f= det(M);
2 Comments
Answers (1)
  Walter Roberson
      
      
 on 2 Jun 2022
        There is no way that you will be able to find the symbolic determinant of a 25 x 25 matrix unless nearly all of it is 0. It would have over 10^25 terms, each of which is going to be complicated.
You could instead try to use something like fsolve() of the det() of a purely numeric matrix
See Also
Categories
				Find more on Creating and Concatenating Matrices 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!

