⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 slarre.c

📁 提供矩阵类的函数库
💻 C
字号:
#include "blaswrap.h"
/*  -- translated by f2c (version 19990503).
   You must link the resulting object file with the libraries:
	-lf2c -lm   (in that order)
*/

#include "f2c.h"

/* Common Block Declarations */

struct {
    real ops, itcnt;
} latime_;

#define latime_1 latime_

/* Table of constant values */

static integer c__1 = 1;

/* Subroutine */ int slarre_(integer *n, real *d__, real *e, real *tol, 
	integer *nsplit, integer *isplit, integer *m, real *w, real *woff, 
	real *gersch, real *work, integer *info)
{
    /* System generated locals */
    integer i__1, i__2;
    real r__1, r__2;

    /* Local variables */
    static real offd;
    static integer iend, jblk, i__, j;
    static real s, delta, sigma, width;
    extern /* Subroutine */ int scopy_(integer *, real *, integer *, real *, 
	    integer *), slasq2_(integer *, real *, integer *);
    static real gl;
    static integer in;
    static real gu;
    static integer ibegin;
    static real sgndef;
    extern doublereal slamch_(char *);
    static integer maxcnt, cnt;
    static real eps, tau, nrm, tmp1;


/*  -- LAPACK auxiliary routine (instru to count ops, version 3.0) --   
       Univ. of Tennessee, Univ. of California Berkeley, NAG Ltd.,   
       Courant Institute, Argonne National Lab, and Rice University   
       June 30, 1999   

       Common block to return operation count   

    Purpose   
    =======   

    Given the tridiagonal matrix T, SLARRE sets "small" off-diagonal   
    elements to zero, and for each unreduced block T_i, it finds   
    (i) the numbers sigma_i   
    (ii) the base T_i - sigma_i I = L_i D_i L_i^T representations and   
    (iii) eigenvalues of each L_i D_i L_i^T.   
    The representations and eigenvalues found are then used by   
    SSTEGR to compute the eigenvectors of a symmetric tridiagonal   
    matrix. Currently, the base representations are limited to being   
    positive or negative definite, and the eigenvalues of the definite   
    matrices are found by the dqds algorithm (subroutine SLASQ2). As   
    an added benefit, SLARRE also outputs the n Gerschgorin   
    intervals for each L_i D_i L_i^T.   

    Arguments   
    =========   

    N       (input) INTEGER   
            The order of the matrix.   

    D       (input/output) REAL array, dimension (N)   
            On entry, the n diagonal elements of the tridiagonal   
            matrix T.   
            On exit, the n diagonal elements of the diagonal   
            matrices D_i.   

    E       (input/output) REAL array, dimension (N)   
            On entry, the (n-1) subdiagonal elements of the tridiagonal   
            matrix T; E(N) need not be set.   
            On exit, the subdiagonal elements of the unit bidiagonal   
            matrices L_i.   

    TOL     (input) REAL   
            The threshold for splitting. If on input |E(i)| < TOL, then   
            the matrix T is split into smaller blocks.   

    NSPLIT  (input) INTEGER   
            The number of blocks T splits into. 1 <= NSPLIT <= N.   

    ISPLIT  (output) INTEGER array, dimension (2*N)   
            The splitting points, at which T breaks up into submatrices.   
            The first submatrix consists of rows/columns 1 to ISPLIT(1),   
            the second of rows/columns ISPLIT(1)+1 through ISPLIT(2),   
            etc., and the NSPLIT-th consists of rows/columns   
            ISPLIT(NSPLIT-1)+1 through ISPLIT(NSPLIT)=N.   

    M       (output) INTEGER   
            The total number of eigenvalues (of all the L_i D_i L_i^T)   
            found.   

    W       (output) REAL array, dimension (N)   
            The first M elements contain the eigenvalues. The   
            eigenvalues of each of the blocks, L_i D_i L_i^T, are   
            sorted in ascending order.   

    WOFF    (output) REAL array, dimension (N)   
            The NSPLIT base points sigma_i.   

    GERSCH  (output) REAL array, dimension (2*N)   
            The n Gerschgorin intervals.   

    WORK    (input) REAL array, dimension (4*N???)   
            Workspace.   

    INFO    (output) INTEGER   
            Output error code from SLASQ2   

    Further Details   
    ===============   

    Based on contributions by   
       Inderjit Dhillon, IBM Almaden, USA   
       Osni Marques, LBNL/NERSC, USA   

    =====================================================================   


       Parameter adjustments */
    --work;
    --gersch;
    --woff;
    --w;
    --isplit;
    --e;
    --d__;

    /* Function Body */
    *info = 0;
    eps = slamch_("Precision");

/*     Compute Splitting Points */

    *nsplit = 1;
    i__1 = *n - 1;
    for (i__ = 1; i__ <= i__1; ++i__) {
	if ((r__1 = e[i__], dabs(r__1)) <= *tol) {
	    isplit[*nsplit] = i__;
	    ++(*nsplit);
	}
/* L10: */
    }
    isplit[*nsplit] = *n;

    ibegin = 1;
    i__1 = *nsplit;
    for (jblk = 1; jblk <= i__1; ++jblk) {
	iend = isplit[jblk];
	if (ibegin == iend) {
	    w[ibegin] = d__[ibegin];
	    woff[jblk] = 0.f;
	    ibegin = iend + 1;
	    goto L170;
	}
	in = iend - ibegin + 1;

/*        Form the n Gerschgorin intervals */

	latime_1.ops += 4.f;
	gl = d__[ibegin] - (r__1 = e[ibegin], dabs(r__1));
	gu = d__[ibegin] + (r__1 = e[ibegin], dabs(r__1));
	gersch[(ibegin << 1) - 1] = gl;
	gersch[ibegin * 2] = gu;
	gersch[(iend << 1) - 1] = d__[iend] - (r__1 = e[iend - 1], dabs(r__1))
		;
	gersch[iend * 2] = d__[iend] + (r__1 = e[iend - 1], dabs(r__1));
/* Computing MIN */
	r__1 = gersch[(iend << 1) - 1];
	gl = dmin(r__1,gl);
/* Computing MAX */
	r__1 = gersch[iend * 2];
	gu = dmax(r__1,gu);
	i__2 = iend - 1;
	for (i__ = ibegin + 1; i__ <= i__2; ++i__) {
	    latime_1.ops += 3.f;
	    offd = (r__1 = e[i__ - 1], dabs(r__1)) + (r__2 = e[i__], dabs(
		    r__2));
	    gersch[(i__ << 1) - 1] = d__[i__] - offd;
/* Computing MIN */
	    r__1 = gersch[(i__ << 1) - 1];
	    gl = dmin(r__1,gl);
	    gersch[i__ * 2] = d__[i__] + offd;
/* Computing MAX */
	    r__1 = gersch[i__ * 2];
	    gu = dmax(r__1,gu);
/* L20: */
	}
/* Computing MAX */
	r__1 = dabs(gl), r__2 = dabs(gu);
	nrm = dmax(r__1,r__2);

/*        Find the number SIGMA where the base representation   
          T - sigma I = L D L^T is to be formed. */

	width = gu - gl;
	i__2 = iend - 1;
	for (i__ = ibegin; i__ <= i__2; ++i__) {
	    latime_1.ops += 1.f;
	    work[i__] = e[i__] * e[i__];
/* L30: */
	}
	latime_1.ops += 6.f;
	for (j = 1; j <= 2; ++j) {
	    if (j == 1) {
		tau = gl + width * .25f;
	    } else {
		tau = gu - width * .25f;
	    }
	    tmp1 = d__[ibegin] - tau;
	    if (tmp1 < 0.f) {
		cnt = 1;
	    } else {
		cnt = 0;
	    }
	    i__2 = iend;
	    for (i__ = ibegin + 1; i__ <= i__2; ++i__) {
		latime_1.ops += 3.f;
		tmp1 = d__[i__] - tau - work[i__ - 1] / tmp1;
		if (tmp1 < 0.f) {
		    ++cnt;
		}
/* L40: */
	    }
	    if (cnt == 0) {
		gl = tau;
	    } else if (cnt == in) {
		gu = tau;
	    }
	    if (j == 1) {
		maxcnt = cnt;
		sigma = gl;
		sgndef = 1.f;
	    } else {
		if (in - cnt > maxcnt) {
		    sigma = gu;
		    sgndef = -1.f;
		}
	    }
/* L50: */
	}

/*        Find the base L D L^T representation */

	latime_1.ops += 1.f;
	work[in * 3] = 1.f;
	delta = eps;
	tau = sgndef * nrm;
L60:
	latime_1.ops += (real) ((in - 1) * 5 + 3);
	sigma -= delta * tau;
	work[1] = d__[ibegin] - sigma;
	j = ibegin;
	i__2 = in - 1;
	for (i__ = 1; i__ <= i__2; ++i__) {
	    work[(in << 1) + i__] = 1.f / work[(i__ << 1) - 1];
	    tmp1 = e[j] * work[(in << 1) + i__];
	    work[(i__ << 1) + 1] = d__[j + 1] - sigma - tmp1 * e[j];
	    work[i__ * 2] = tmp1;
	    ++j;
/* L70: */
	}
	latime_1.ops += (real) in;
	for (i__ = in; i__ >= 1; --i__) {
	    tmp1 = sgndef * work[(i__ << 1) - 1];
	    if (tmp1 < 0.f || work[(in << 1) + i__] == 0.f || ! (tmp1 > 0.f ||
		     tmp1 < 1.f)) {
		latime_1.ops += 1.f;
		delta *= 2.f;
		goto L60;
	    }
	    --j;
/* L80: */
	}

	latime_1.ops += (real) (in - 1);
	j = ibegin;
	d__[ibegin] = work[1];
	work[1] = dabs(work[1]);
	i__2 = in - 1;
	for (i__ = 1; i__ <= i__2; ++i__) {
	    tmp1 = e[j];
	    e[j] = work[i__ * 2];
	    work[i__ * 2] = (r__1 = tmp1 * work[i__ * 2], dabs(r__1));
	    ++j;
	    d__[j] = work[(i__ << 1) + 1];
	    work[(i__ << 1) + 1] = (r__1 = work[(i__ << 1) + 1], dabs(r__1));
/* L90: */
	}

	slasq2_(&in, &work[1], info);

	latime_1.ops += 2.f;
	tau = sgndef * work[in];
	work[in * 3] = 1.f;
	delta = eps * 2.f;
L100:
	latime_1.ops += 2.f;
	tau *= 1.f - delta;

	latime_1.ops += (real) ((in - 1) * 9 + 1);
	s = -tau;
	j = ibegin;
	i__2 = in - 1;
	for (i__ = 1; i__ <= i__2; ++i__) {
	    work[i__] = d__[j] + s;
	    work[(in << 1) + i__] = 1.f / work[i__];
/*           WORK( N+I ) = ( E( I ) * D( I ) ) / WORK( I ) */
	    work[in + i__] = e[j] * d__[j] * work[(in << 1) + i__];
	    s = s * work[in + i__] * e[j] - tau;
	    ++j;
/* L110: */
	}
	work[in] = d__[iend] + s;

/*        Checking to see if all the diagonal elements of the new   
          L D L^T representation have the same sign */

	latime_1.ops += (real) (in + 1);
	for (i__ = in; i__ >= 1; --i__) {
	    tmp1 = sgndef * work[i__];
	    if (tmp1 < 0.f || work[(in << 1) + i__] == 0.f || ! (tmp1 > 0.f ||
		     tmp1 < 1.f)) {
		latime_1.ops += 1.f;
		delta *= 2.f;
		goto L100;
	    }
/* L120: */
	}

	sigma += tau;
	scopy_(&in, &work[1], &c__1, &d__[ibegin], &c__1);
	i__2 = in - 1;
	scopy_(&i__2, &work[in + 1], &c__1, &e[ibegin], &c__1);
	woff[jblk] = sigma;

/*        Update the n Gerschgorin intervals */

	latime_1.ops += 2.f;
	i__2 = iend;
	for (i__ = ibegin; i__ <= i__2; ++i__) {
	    gersch[(i__ << 1) - 1] -= sigma;
	    gersch[i__ * 2] -= sigma;
/* L130: */
	}

/*        Compute the eigenvalues of L D L^T. */

	j = ibegin;
	latime_1.ops += (real) (in - 1 << 1);
	i__2 = in - 1;
	for (i__ = 1; i__ <= i__2; ++i__) {
	    work[(i__ << 1) - 1] = (r__1 = d__[j], dabs(r__1));
	    work[i__ * 2] = e[j] * e[j] * work[(i__ << 1) - 1];
	    ++j;
/* L140: */
	}
	work[(in << 1) - 1] = (r__1 = d__[iend], dabs(r__1));

	slasq2_(&in, &work[1], info);

	j = ibegin;
	if (sgndef > 0.f) {
	    i__2 = in;
	    for (i__ = 1; i__ <= i__2; ++i__) {
		w[j] = work[in - i__ + 1];
		++j;
/* L150: */
	    }
	} else {
	    i__2 = in;
	    for (i__ = 1; i__ <= i__2; ++i__) {
		w[j] = -work[i__];
		++j;
/* L160: */
	    }
	}
	ibegin = iend + 1;
L170:
	;
    }
    *m = *n;

    return 0;

/*     End of SLARRE */

} /* slarre_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -