/**************************************************************************** * * zcstrd.h * * Abstract * The prototype of the routine user can invoke to perform the * tridiagonalization of a complex symmetric matrix. * * Student: Guohong Liu * * ID: 0385117 * ****************************************************************************/ #ifndef __ZCSTRD_H #define __ZCSTRD_H #include "blklan.h" int zcstrd_ (integer *n, doublecomplex *A, integer *bs, doublecomplex *S, doublecomplex *a, doublereal *b, doublecomplex *Q, doublecomplex *P, integer *info); #endif