rluce / tlcomp

Computing with Toeplitz and Toeplitz-like matrices in Matlab
MIT License
1 stars 0 forks source link

Implement determinant function #18

Closed rluce closed 6 years ago

rluce commented 6 years ago

We want to compute det(TLMat). This can be done by computing the LU factorization after transformation to Cauchy like, and to multiply all the determinants of the unitiary and trianuglar matrices involved. Of course none of the matrices should be computed explicitly, so that the memory footprint is O(n).