Re: [sage-support] Re: Cholesky for sparse matrix

2012-11-01 Thread Raniere Gaia Silva
Dima, I never work with CHOLMOD cvxopt directily, but if there is any thing that I can do to help you to get sparse Cholesky implemented for non-exact sparse Sage matrices just say. Raniere On Thu, Nov 1, 2012 at 3:01 AM, Jason Grout wrote: > On 10/31/12 11:53 PM, Dima Pasechnik wrote: > > Sho

[sage-support] Re: Cholesky for sparse matrix

2012-10-31 Thread Jason Grout
On 10/31/12 11:53 PM, Dima Pasechnik wrote: Should I volunteer +1. Always +1 to that question. :) Jason -- You received this message because you are subscribed to the Google Groups "sage-support" group. To post to this group, send email to sage-support@googlegroups.com. To unsubscribe fro

[sage-support] Re: Cholesky for sparse matrix

2012-10-31 Thread Dima Pasechnik
Hi, after a discussion here: https://groups.google.com/d/topic/cvxopt/xQ-lR9ESijg/discussion it turns out that there is enough CHOLMOD interface already in Sage, it's just not documented properly. Should I volunteer to get sparse Cholesky implemented for non-exact sparse Sage matrices, via thi

[sage-support] Re: Cholesky for sparse matrix

2012-10-31 Thread Dima Pasechnik
please see this https://groups.google.com/d/topic/cvxopt/xQ-lR9ESijg/discussion far a way to make it more sane. It turns out that cvxopt has un undocumented function to extract the Cholesky factor directly. On Tuesday, 30 October 2012 21:49:48 UTC+8, Dima Pasechnik wrote: > > On 2012-10-29, Ran

[sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Dima Pasechnik
On 2012-10-29, Raniere Gaia Silva wrote: > Hi, > I need to performe a (numerical) cholesky factorization of a sparse > matrix (20x20) but I'm getting a error. OK, my previous reply didn't make much sense, so here is one that is meaningful. In cvxopt (a standard Sage spkg) there is an interface to

[sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Dima Pasechnik
On 2012-10-30, Jason Grout wrote: > On 10/30/12 6:34 AM, Dima Pasechnik wrote: >> On 2012-10-29, Raniere Gaia Silva wrote: >>> Hi, >>> I need to performe a (numerical) cholesky factorization of a sparse >>> matrix (20x20) but I'm getting a error. >> >> the error message is clear: there is no impl

Re: [sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Raniere Gaia Silva
Thanks all reply. I really like to make a little improve to Sage can handle the sparse matrix. Should I open a ticket? Raniere -- You received this message because you are subscribed to the Google Groups "sage-support" group. To post to this group, send email to sage-support@googlegroups.com.

[sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Jason Grout
On 10/30/12 6:54 AM, Jason Grout wrote: Scipy had some interest in adding sparse cholesky [1], but it seems that nothing came of it. On the other hand, it would be cool if we wrapped something like CHOLMOD [2] to compute sparse cholesky decompositions. It looks like the scikits-sparse package

[sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Jason Grout
On 10/30/12 6:34 AM, Dima Pasechnik wrote: On 2012-10-29, Raniere Gaia Silva wrote: Hi, I need to performe a (numerical) cholesky factorization of a sparse matrix (20x20) but I'm getting a error. the error message is clear: there is no implementation for RDF matrices, only for exact matrices.

[sage-support] Re: Cholesky for sparse matrix

2012-10-30 Thread Dima Pasechnik
On 2012-10-29, Raniere Gaia Silva wrote: > Hi, > I need to performe a (numerical) cholesky factorization of a sparse > matrix (20x20) but I'm getting a error. the error message is clear: there is no implementation for RDF matrices, only for exact matrices. So you can do this for QQ, for instance.