Major problem with Cholesky decomposition
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi all,
I'm having major issues with the chol command. A code I need to run uses Cholesky decomposition and it crashes right at the point where it needs to manipulate a matrix.
Even worse, Matlab yields the following nonsense (see below):

Note that this example comes straight from the chol help file. Any idea why this is happening? I'm using version 2013b. Thanks!
댓글 수: 11
dpb
2018년 7월 17일
Too bad...since it's builtin pretty clear there's a interaction issue of some sort going on.
Appears only choice other than an upgrade would be to try reversion of any OS upgrades or to upgrade to see if that would somehow magically make the symptom disappear.
Do you have previous knowledge it did work at one time on the specific machine?
Christine Tobler
2018년 7월 17일
That's too bad. And the "out of memory" message is weird on a whole different level: The only difference between the one-output and two-output calls is that one scalar number is allocated for p. So there's something seriously bad going on with this installation.
I haven't heard of any problems with R2013b and i7 CPUs, but upgrading MATLAB / changing your OS configuation seems like a reasonable idea.
Is Cholesky the only function you're seeing problems with? I'd expect all linear algebra operations / all operations in general to have problems, given how badly Cholesky is doing here.
답변 (1개)
Jan
2018년 7월 15일
Either this is a problem with the called libraries or a user defined function shadows the original one, but contains a bug. Please run:
profile clear
profile('on', '-detail', 'builtin')
chol(pascal(5))
profile report
Do you see any function, which differs from "(built-in function)"?
댓글 수: 8
Walter Roberson
2018년 7월 16일
... I was close. There was a Core i7 option for MacBook Pro from mid 2010 and for Mac Mini from mid 2011.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



