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

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

[Octave-bug-tracker] [bug #58679] Missing function lsqminnorm


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #58679] Missing function lsqminnorm
Date: Tue, 30 Jun 2020 08:45:25 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36 Edg/83.0.478.56

Follow-up Comment #1, bug #58679 (project octave):

If I correctly understand the documentation, Octave's mldivide already
calculates the minimum norm solution:
https://octave.org/doc/v5.2.0/Arithmetic-Ops.html#Arithmetic-Ops

So a trivial implementation of the function could be:

function X = lsqminnorm(A, B)
  X = A\B;
endfunction



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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