Re: [eigen] How far along is the sparse module? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] How far along is the sparse module?
- From: Peter Román <peterrom@xxxxxxxxx>
- Date: Wed, 9 Sep 2009 12:55:12 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=WzdS3zYI0Uvd1v8J0KlryHu+tp2lCVlgYjuRnywcsOY=; b=EqLkxC96hPMVDNBPkScak80FVo055htB1DwmkXyZT5YREr0QxEtMnNFBrkAyLFgdMh 1AxXZ0m4RlWrk+J1IEksgv0wnOjUO+F3r8UGgS57W0BAOK4L4E0xN7eRuFWv/sMCGgyt 7r1IdvxORzeN1rBDppSE+zfS/BwTiz9o1YnZY=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=eFeGNuFpw+0alP5uxJw5HexYQnn0NhpQaggGHpT+pvUQUMmonbwSTnBHWFtXNm4EkL vkpMykisXcIyS3ZxTbscKEBsPrPPnVjSW3vOK+hIykDQ8jc69O/Ko0itcJJwbQJlZcM/ mlNIUcTkrFnIbhkxNnpQzvrNkdKpLVXSCvBWo=
Hi!
On Wed, Sep 9, 2009 at 11:17 AM, bp<bjornpiltz@xxxxxxxxxxxxxx> wrote:
> I need to take advantage of the fact that H is sparse, symmetric and
> positive definite.
> I understand, that I could use LU, Cholesky, QR, or SVD.
> I want to try out all combinations for dense and sparse Matrices, but
> I'm wondering how mature the Sparse module is. I tried
> the SparseLU class, but realized that the decomposition isn't implemented yet.
Surely nothing would beat a Cholesky decomposition for a symmetric and
positive definite system? The SparseLLT class already has support for
the TAUCS and CHOLMOD libraries, take a look at CholmodSupport.h and
TaucsSupport.h in the Sparse directory.
Hope this helped!
// Peter