NAME

dsbgv - compute all the eigenvalues, and optionally, the eigenvectors of a real generalized symmetric-definite banded eigenproblem, of the form A*x=(lambda)*B*x


SYNOPSIS

  SUBROUTINE DSBGV( JOBZ, UPLO, N, KA, KB, AB, LDAB, BB, LDBB, W, Z, 
 *      LDZ, WORK, INFO)
  CHARACTER * 1 JOBZ, UPLO
  INTEGER N, KA, KB, LDAB, LDBB, LDZ, INFO
  DOUBLE PRECISION AB(LDAB,*), BB(LDBB,*), W(*), Z(LDZ,*), WORK(*)
  SUBROUTINE DSBGV_64( JOBZ, UPLO, N, KA, KB, AB, LDAB, BB, LDBB, W, 
 *      Z, LDZ, WORK, INFO)
  CHARACTER * 1 JOBZ, UPLO
  INTEGER*8 N, KA, KB, LDAB, LDBB, LDZ, INFO
  DOUBLE PRECISION AB(LDAB,*), BB(LDBB,*), W(*), Z(LDZ,*), WORK(*)

F95 INTERFACE

  SUBROUTINE SBGV( JOBZ, UPLO, [N], KA, KB, AB, [LDAB], BB, [LDBB], W, 
 *       Z, [LDZ], [WORK], [INFO])
  CHARACTER(LEN=1) :: JOBZ, UPLO
  INTEGER :: N, KA, KB, LDAB, LDBB, LDZ, INFO
  REAL(8), DIMENSION(:) :: W, WORK
  REAL(8), DIMENSION(:,:) :: AB, BB, Z
  SUBROUTINE SBGV_64( JOBZ, UPLO, [N], KA, KB, AB, [LDAB], BB, [LDBB], 
 *       W, Z, [LDZ], [WORK], [INFO])
  CHARACTER(LEN=1) :: JOBZ, UPLO
  INTEGER(8) :: N, KA, KB, LDAB, LDBB, LDZ, INFO
  REAL(8), DIMENSION(:) :: W, WORK
  REAL(8), DIMENSION(:,:) :: AB, BB, Z

C INTERFACE

#include <sunperf.h>

void dsbgv(char jobz, char uplo, int n, int ka, int kb, double *ab, int ldab, double *bb, int ldbb, double *w, double *z, int ldz, int *info);

void dsbgv_64(char jobz, char uplo, long n, long ka, long kb, double *ab, long ldab, double *bb, long ldbb, double *w, double *z, long ldz, long *info);


PURPOSE

dsbgv computes all the eigenvalues, and optionally, the eigenvectors of a real generalized symmetric-definite banded eigenproblem, of the form A*x=(lambda)*B*x. Here A and B are assumed to be symmetric and banded, and B is also positive definite.


ARGUMENTS