dsvd Subroutine

subroutine dsvd(A, s, U, Vtransp)

Arguments

Type IntentOptional Attributes Name
real(kind=8), intent(in) :: A(:,:)
real(kind=8), intent(out) :: s(:)
real(kind=8), intent(out) :: U(:,:)
real(kind=8), intent(out) :: Vtransp(:,:)

Calls

proc~~dsvd~2~~CallsGraph proc~dsvd~2 dsvd assert_shape assert_shape proc~dsvd~2->assert_shape dgesvd dgesvd proc~dsvd~2->dgesvd

Source Code

subroutine dsvd(A, s, U, Vtransp)
  ! real m x n matrix A
  ! U is m x m
  ! Vtransp is n x n
  ! s has size min(m, n) --> sigma matrix is (n x m) with sigma_ii = s_i
  real(8), intent(in)  :: A(:,:)
  real(8), intent(out) :: s(:), U(:,:), Vtransp(:,:)
  integer              :: info, lwork, m, n, ldu
  real(8), allocatable :: work(:), At(:,:)
  m = size(A(:,1))  ! = lda
  n = size(A(1,:))
  ldu = m
  allocate(At(m,n))
  At(:,:) = A(:,:)  ! use a temporary as dgesvd destroys its input
  call assert_shape(U, [m, m], "svd", "U")
  call assert_shape(Vtransp, [n, n], "svd", "Vtransp")
  ! query optimal lwork and allocate workspace:
  allocate(work(1))
  call dgesvd('A', 'A', m, n, At, m, s, U, ldu, Vtransp, n, work, -1, info)
  lwork = int(real(work(1)))
  deallocate(work)
  allocate(work(lwork))
  call dgesvd('A', 'A', m, n, At, m, s, U, ldu, Vtransp, n, work, lwork, info)
  if(info /= 0) then
     print *, "dgesvd returned info = ", info
     if(info < 0) then
        print *, "the ", -info, "-th argument had an illegal value"
     else
        print *, "DBDSQR did not converge, there are ", info
        print *, "superdiagonals of an intermediate bidiagonal form B"
        print *, "did not converge to zero. See the description of WORK"
        print *, "in DGESVD's man page for details."
     endif
     stop 'dsvd errpr: dgesvd'
  endif
end subroutine dsvd