dsptrd


NAME

dsptrd - reduce a real symmetric matrix A stored in packed form to symmetric tridiagonal form T by an orthogonal similarity transformation


SYNOPSIS

  SUBROUTINE DSPTRD( UPLO, N, AP, D, E, TAU, INFO)
  CHARACTER * 1 UPLO
  INTEGER N, INFO
  DOUBLE PRECISION AP(*), D(*), E(*), TAU(*)
 
  SUBROUTINE DSPTRD_64( UPLO, N, AP, D, E, TAU, INFO)
  CHARACTER * 1 UPLO
  INTEGER*8 N, INFO
  DOUBLE PRECISION AP(*), D(*), E(*), TAU(*)
 

F95 INTERFACE

  SUBROUTINE SPTRD( UPLO, N, AP, D, E, TAU, [INFO])
  CHARACTER(LEN=1) :: UPLO
  INTEGER :: N, INFO
  REAL(8), DIMENSION(:) :: AP, D, E, TAU
 
  SUBROUTINE SPTRD_64( UPLO, N, AP, D, E, TAU, [INFO])
  CHARACTER(LEN=1) :: UPLO
  INTEGER(8) :: N, INFO
  REAL(8), DIMENSION(:) :: AP, D, E, TAU
 

C INTERFACE

#include <sunperf.h>

void dsptrd(char uplo, int n, double *ap, double *d, double *e, double *tau, int *info);

void dsptrd_64(char uplo, long n, double *ap, double *d, double *e, double *tau, long *info);


PURPOSE

dsptrd reduces a real symmetric matrix A stored in packed form to symmetric tridiagonal form T by an orthogonal similarity transformation: Q**T * A * Q = T.


ARGUMENTS

* UPLO (input)
* N (input)
The order of the matrix A. N >= 0.

* AP (input)
On entry, the upper or lower triangle of the symmetric matrix A, packed columnwise in a linear array. The j-th column of A is stored in the array AP as follows: if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; if UPLO = 'L', AP(i + (j-1)*(2*n-j)/2) = A(i,j) for j<=i<=n. On exit, if UPLO = 'U', the diagonal and first superdiagonal of A are overwritten by the corresponding elements of the tridiagonal matrix T, and the elements above the first superdiagonal, with the array TAU, represent the orthogonal matrix Q as a product of elementary reflectors; if UPLO

* D (output)
The diagonal elements of the tridiagonal matrix T: D(i) = A(i,i).

* E (output)
The off-diagonal elements of the tridiagonal matrix T: E(i) = A(i,i+1) if UPLO = 'U', E(i) = A(i+1,i) if UPLO = 'L'.

* TAU (output)
The scalar factors of the elementary reflectors (see Further Details).

* INFO (output)