Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Efficient algorithm for determinant of a m-diagonal NxN symmetric matrix

I have to find the determinant of a symmetric square NxN matrix with M diagonals and M << N. Is there a more fast method than LU-decomposing the matrix?

like image 609
Red Avatar asked Nov 02 '22 01:11

Red


1 Answers

Yes, there are special methods for band(ed) matrices that solve elimination with O(N*M^2) complexity. Arbitrary found article of Jeff Thorson

like image 64
MBo Avatar answered Nov 15 '22 09:11

MBo