view libcruft/blas-xtra/xcdotu.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 82be108cc558
children
line wrap: on
line source

      subroutine xcdotu (n, zx, incx, zy, incy, retval)
      complex cdotu, zx(*), zy(*), retval
      integer n, incx, incy
      external cdotu
      retval = cdotu (n, zx, incx, zy, incy)
      return
      end