search for: lasteigenx

Displaying 3 results from an estimated 3 matches for "lasteigenx".

2015 Feb 02
0
error code 1 from Lapack routine 'dsyevr'
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' will contain the bad matrix. Take the trace off of eigen untrace(eigen) If all goes well then eigen(lastEigenX) will cause the same error and you or someone o...
2015 Feb 02
5
error code 1 from Lapack routine 'dsyevr'
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-Lapack-routine-dsyevr-tp4702571p4702639.html Sent from the R devel mailing list archive at
2015 Feb 02
1
error code 1 from Lapack routine 'dsyevr'
On 2 February 2015 at 10:07, William Dunlap <wdunlap at tibco.com> wrote: <snip> > > 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 seem to be about developing R or with/for it. R-Help would have been a more appropriate venue...