Mercurial > hg > octave-lyh
view libcruft/blas-xtra/xsdot.f @ 10671:f5f9bc8e83fc
svds.m: Overhaul code while fixing bug #29721.
Return smallest singular values if sigma == 0 (Bug #29721).
Avoid calculating U and V matrices unless requested.
Correctly handle zero matrix input
Improve documentation string.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 30 May 2010 13:45:50 -0700 |
parents | 9a5e2d13fa5a |
children |
line wrap: on
line source
subroutine xsdot (n, dx, incx, dy, incy, retval) real ddot, dx(*), dy(*), retval, sdot integer n, incx, incy retval = sdot (n, dx, incx, dy, incy) return end