octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #41116] Incorrect result for sparse LU factori


From: Michael C. Grant
Subject: [Octave-bug-tracker] [bug #41116] Incorrect result for sparse LU factorization
Date: Mon, 06 Jan 2014 15:25:15 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_1) AppleWebKit/537.73.11 (KHTML, like Gecko) Version/7.0.1 Safari/537.73.11

Follow-up Comment #3, bug #41116 (project octave):

I have confirmed that the three-argument version is also incorrect, but the
four-argument version is correct. I've studied the LU code a bit but I don't
know enough about UMFPACK to figure it out, and I have another project
calling. I'll get back to this when I can, unless someone else does before me.
I would love to see CVX working with Octave 4.0 or earlier; we're very very
close!

load lutest
[LL2,UU2]=lu(x);
x-LL2*UU2
[LL3,UU3,PP3]=lu(x);
x-PP3'*LL3*UU3
[LL4,UU4,PP4,QQ4]=lu(x);
x-PP4'*LL4*UU4*QQ4'




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?41116>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]