.TH "TESTING/EIG/dsgt01.f" 3 "Version 3.12.0" "LAPACK" \" -*- nroff -*- .ad l .nh .SH NAME TESTING/EIG/dsgt01.f .SH SYNOPSIS .br .PP .SS "Functions/Subroutines" .in +1c .ti -1c .RI "subroutine \fBdsgt01\fP (itype, uplo, n, m, a, lda, b, ldb, z, ldz, d, work, result)" .br .RI "\fBDSGT01\fP " .in -1c .SH "Function/Subroutine Documentation" .PP .SS "subroutine dsgt01 (integer itype, character uplo, integer n, integer m, double precision, dimension( lda, * ) a, integer lda, double precision, dimension( ldb, * ) b, integer ldb, double precision, dimension( ldz, * ) z, integer ldz, double precision, dimension( * ) d, double precision, dimension( * ) work, double precision, dimension( * ) result)" .PP \fBDSGT01\fP .PP \fBPurpose:\fP .RS 4 .PP .nf DDGT01 checks a decomposition of the form A Z = B Z D or A B Z = Z D or B A Z = Z D where A is a symmetric matrix, B is symmetric positive definite, Z is orthogonal, and D is diagonal\&. One of the following test ratios is computed: ITYPE = 1: RESULT(1) = | A Z - B Z D | / ( |A| |Z| n ulp ) ITYPE = 2: RESULT(1) = | A B Z - Z D | / ( |A| |Z| n ulp ) ITYPE = 3: RESULT(1) = | B A Z - Z D | / ( |A| |Z| n ulp ) .fi .PP .RE .PP \fBParameters\fP .RS 4 \fIITYPE\fP .PP .nf ITYPE is INTEGER The form of the symmetric generalized eigenproblem\&. = 1: A*z = (lambda)*B*z = 2: A*B*z = (lambda)*z = 3: B*A*z = (lambda)*z .fi .PP .br \fIUPLO\fP .PP .nf UPLO is CHARACTER*1 Specifies whether the upper or lower triangular part of the symmetric matrices A and B is stored\&. = 'U': Upper triangular = 'L': Lower triangular .fi .PP .br \fIN\fP .PP .nf N is INTEGER The order of the matrix A\&. N >= 0\&. .fi .PP .br \fIM\fP .PP .nf M is INTEGER The number of eigenvalues found\&. 0 <= M <= N\&. .fi .PP .br \fIA\fP .PP .nf A is DOUBLE PRECISION array, dimension (LDA, N) The original symmetric matrix A\&. .fi .PP .br \fILDA\fP .PP .nf LDA is INTEGER The leading dimension of the array A\&. LDA >= max(1,N)\&. .fi .PP .br \fIB\fP .PP .nf B is DOUBLE PRECISION array, dimension (LDB, N) The original symmetric positive definite matrix B\&. .fi .PP .br \fILDB\fP .PP .nf LDB is INTEGER The leading dimension of the array B\&. LDB >= max(1,N)\&. .fi .PP .br \fIZ\fP .PP .nf Z is DOUBLE PRECISION array, dimension (LDZ, M) The computed eigenvectors of the generalized eigenproblem\&. .fi .PP .br \fILDZ\fP .PP .nf LDZ is INTEGER The leading dimension of the array Z\&. LDZ >= max(1,N)\&. .fi .PP .br \fID\fP .PP .nf D is DOUBLE PRECISION array, dimension (M) The computed eigenvalues of the generalized eigenproblem\&. .fi .PP .br \fIWORK\fP .PP .nf WORK is DOUBLE PRECISION array, dimension (N*N) .fi .PP .br \fIRESULT\fP .PP .nf RESULT is DOUBLE PRECISION array, dimension (1) The test ratio as described above\&. .fi .PP .RE .PP \fBAuthor\fP .RS 4 Univ\&. of Tennessee .PP Univ\&. of California Berkeley .PP Univ\&. of Colorado Denver .PP NAG Ltd\&. .RE .PP .PP Definition at line \fB144\fP of file \fBdsgt01\&.f\fP\&. .SH "Author" .PP Generated automatically by Doxygen for LAPACK from the source code\&.