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

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

[Octave-bug-tracker] [bug #60089] the sparse QR factorizion does not giv


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #60089] the sparse QR factorizion does not give economy sized Q
Date: Mon, 22 Feb 2021 02:04:08 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.74

Update of bug #60089 (project octave):

                  Status:                    None => Fixed                  
             Open/Closed:                    Open => Closed                 
                 Release:                   4.2.2 => dev                    
        Operating System:               GNU/Linux => Any                    

    _______________________________________________________

Follow-up Comment #1:

I can confirm that this is still an issue in Octave 6.2.0.

It seems to work as expected with a built from the development sources (which
will eventually become Octave 7):

>> Z = [magic(3); speye(3)];
>> [Q, ~] = qr(Z, 0);
>> size(Q)
ans =

   6   3

>> [Q, ~] = qr(full(Z), 0);
>> size(Q)
ans =

   6   3


This is probably because starting in that version Octave's `qr` function will
be using SPQR if available.

It is unlikely that that change will be backported to Octave 6 (because it
would be quite disruptive and break the API).

Closing as fixed for Octave 7.


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?60089>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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