Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-14 Thread eigen
Thank you. I am too busy these days. I will get back to this problem once I get some time. On Mon, Feb 2, 2015 at 12:01 PM, Gavin Simpson-3 [via R] < ml-node+s789695n4702678...@n4.nabble.com> wrote: > On 2 February 2015 at 10:07, William Dunlap <[hidden email] >

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread Gavin Simpson
On 2 February 2015 at 10:07, William Dunlap wrote: > > If all goes well then >eigen(lastEigenX) > will cause the same error and you or someone on this list can see what > is odd about that matrix (e.g., by looking at its singular values). Preferably *not* this list as this doesn't really se

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread William Dunlap
You can start diagnosing the problem by capturing the matrix that caused eigen() to stop. You can do this in a variety of ways; here is one trace(eigen, quote(lastEigenX <<- x)) After setting the trace, make your offending function call and after the error the global variable 'lastEigenX' wil

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread eigen
Sorry for being unclear. I am using R x64 3.1.2 for simulation. Basically I got a matrix of genetic data and calculated the kernel matrix. Now I have trouble applying eigen function on the kernel matrix for a few simulations but not most of them. I tried other methods but none of them worked. I gue

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread Kasper Daniel Hansen
fortune candidate On Mon, Feb 2, 2015 at 8:54 AM, peter dalgaard wrote: > > On 02 Feb 2015, at 04:08 , eigen wrote: > > > Thank you for your reply. Do you have any idea of how to get rid of the > > errors? I tried Null function to calculate eigenvectors and nearPD to get > > approximate positiv

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread peter dalgaard
On 02 Feb 2015, at 04:08 , eigen wrote: > Thank you for your reply. Do you have any idea of how to get rid of the > errors? I tried Null function to calculate eigenvectors and nearPD to get > approximate positive definite matrix first but they also had errors. > How could we? All we know is t

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-02-02 Thread eigen
Thank you for your reply. Do you have any idea of how to get rid of the errors? I tried Null function to calculate eigenvectors and nearPD to get approximate positive definite matrix first but they also had errors. -- View this message in context: http://r.789695.n4.nabble.com/error-code-1-from

Re: [Rd] error code 1 from Lapack routine 'dsyevr'

2015-01-31 Thread Prof Brian Ripley
On 31/01/2015 14:15, eigen wrote: Hi, I got an error message in my program saying "Error in eigen(gene_intersection.kernel) : error code 1 from Lapack routine 'dsyevr' Execution halted". As you see, I was trying to compute the eigenvalues of a matrix but got this error. Is there anyone who

[Rd] error code 1 from Lapack routine 'dsyevr'

2015-01-31 Thread eigen
Hi, I got an error message in my program saying "Error in eigen(gene_intersection.kernel) : error code 1 from Lapack routine 'dsyevr' Execution halted". As you see, I was trying to compute the eigenvalues of a matrix but got this error. Is there anyone who knows what this error means and