octave-maintainers
[Top][All Lists]
Advanced

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

half-assed rcond


From: Søren Hauberg
Subject: half-assed rcond
Date: Sat, 01 Sep 2007 10:12:02 +0200
User-agent: Thunderbird 1.5.0.13 (X11/20070824)

Hi,
For some time I've been using some written-for-matlab code that requires the 'rcond' function, which Octave doesn't have. For this I've been using the following half-assed implementation:

function rc = rcond(A)
  [dont_care, rc] = det(A);
endfunction

Just wondering if you wanted a documented, error-checking, etc., version of the above code, or if that implementation is too in-efficient?

Søren


reply via email to

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