Code covered by the BSD License  

Highlights from
Safe computation of logarithm-determinat of large matrix

Be the first to rate this file! 7 Downloads (last 30 days) File Size: 2.25 KB File ID: #22026

Safe computation of logarithm-determinat of large matrix

by Dahua Lin

 

08 Nov 2008

Computes the logarithm of determinant of a matrix in a safe way that avoids overflow/underflow.

| Watch this File

File Information
Description

Logarithm of determinant of a matrix widely occurs in the context of multivariate statistics. The log-pdf, entropy, and divergence of Gaussian distribution typically comprises a term in form of log-determinant. This function might be useful there, especially in a high-dimensional space.

However, the standard way of computing log-determinant:

        log(det(A));

is likely to run into underflow or overflow, especially for large matrices, such as 1000 x 1000 or larger ones. The main cause of the problem is that the value of determinant is too large to be represented by a single or double number. However, what is needed is the logarithm of this value rather than the determinant itself. So an approach to circumvent this difficulty is to keep the computation at logarithm scale.

The key idea of the implementation is based on the mathematical fact that the determinant of a triangular matrix equals the product of its diagonal elements. Hence, the matrix's log-determinant is equal to the sum of their logarithm values. Therefore, we can effectively tackle the problem by computing sum-of-log rather than computing log-of-product. For generic matrix, it uses LU factorization, while for positive definite matrices, cholesky factorization can be used, which is typically more efficient.

The core of the implementation contains only several lines. Actually, this function is not to solve kind of complicated problems, but rather it is aimed at offering convenient help for you when you want to compute log-determinant of large matrices. The usage is very simple:

For generic matrix:

v = logdet(A);

for positive definite matrix (such as covariance matrix), it is faster to write

v = logdet(A, 'chol');

Hope it helps.

MATLAB release MATLAB 7.6 (R2008a)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
logarithm Dahua Lin 09 Nov 2008 19:24:30
determinant Dahua Lin 09 Nov 2008 19:24:30
logdet Dahua Lin 09 Nov 2008 19:24:30
gaussian Dahua Lin 09 Nov 2008 19:24:30
gaussian Cristina McIntire 10 Nov 2008 10:37:18
matrix Cristina McIntire 10 Nov 2008 10:37:29

Contact us at files@mathworks.com