slansb.c
Go to the documentation of this file.
00001 /* slansb.f -- translated by f2c (version 20061008).
00002    You must link the resulting object file with libf2c:
00003         on Microsoft Windows system, link with libf2c.lib;
00004         on Linux or Unix systems, link with .../path/to/libf2c.a -lm
00005         or, if you install libf2c.a in a standard place, with -lf2c -lm
00006         -- in that order, at the end of the command line, as in
00007                 cc *.o -lf2c -lm
00008         Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
00009 
00010                 http://www.netlib.org/f2c/libf2c.zip
00011 */
00012 
00013 #include "f2c.h"
00014 #include "blaswrap.h"
00015 
00016 /* Table of constant values */
00017 
00018 static integer c__1 = 1;
00019 
00020 doublereal slansb_(char *norm, char *uplo, integer *n, integer *k, real *ab, 
00021         integer *ldab, real *work)
00022 {
00023     /* System generated locals */
00024     integer ab_dim1, ab_offset, i__1, i__2, i__3, i__4;
00025     real ret_val, r__1, r__2, r__3;
00026 
00027     /* Builtin functions */
00028     double sqrt(doublereal);
00029 
00030     /* Local variables */
00031     integer i__, j, l;
00032     real sum, absa, scale;
00033     extern logical lsame_(char *, char *);
00034     real value;
00035     extern /* Subroutine */ int slassq_(integer *, real *, integer *, real *, 
00036             real *);
00037 
00038 
00039 /*  -- LAPACK auxiliary routine (version 3.2) -- */
00040 /*     Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
00041 /*     November 2006 */
00042 
00043 /*     .. Scalar Arguments .. */
00044 /*     .. */
00045 /*     .. Array Arguments .. */
00046 /*     .. */
00047 
00048 /*  Purpose */
00049 /*  ======= */
00050 
00051 /*  SLANSB  returns the value of the one norm,  or the Frobenius norm, or */
00052 /*  the  infinity norm,  or the element of  largest absolute value  of an */
00053 /*  n by n symmetric band matrix A,  with k super-diagonals. */
00054 
00055 /*  Description */
00056 /*  =========== */
00057 
00058 /*  SLANSB returns the value */
00059 
00060 /*     SLANSB = ( max(abs(A(i,j))), NORM = 'M' or 'm' */
00061 /*              ( */
00062 /*              ( norm1(A),         NORM = '1', 'O' or 'o' */
00063 /*              ( */
00064 /*              ( normI(A),         NORM = 'I' or 'i' */
00065 /*              ( */
00066 /*              ( normF(A),         NORM = 'F', 'f', 'E' or 'e' */
00067 
00068 /*  where  norm1  denotes the  one norm of a matrix (maximum column sum), */
00069 /*  normI  denotes the  infinity norm  of a matrix  (maximum row sum) and */
00070 /*  normF  denotes the  Frobenius norm of a matrix (square root of sum of */
00071 /*  squares).  Note that  max(abs(A(i,j)))  is not a consistent matrix norm. */
00072 
00073 /*  Arguments */
00074 /*  ========= */
00075 
00076 /*  NORM    (input) CHARACTER*1 */
00077 /*          Specifies the value to be returned in SLANSB as described */
00078 /*          above. */
00079 
00080 /*  UPLO    (input) CHARACTER*1 */
00081 /*          Specifies whether the upper or lower triangular part of the */
00082 /*          band matrix A is supplied. */
00083 /*          = 'U':  Upper triangular part is supplied */
00084 /*          = 'L':  Lower triangular part is supplied */
00085 
00086 /*  N       (input) INTEGER */
00087 /*          The order of the matrix A.  N >= 0.  When N = 0, SLANSB is */
00088 /*          set to zero. */
00089 
00090 /*  K       (input) INTEGER */
00091 /*          The number of super-diagonals or sub-diagonals of the */
00092 /*          band matrix A.  K >= 0. */
00093 
00094 /*  AB      (input) REAL array, dimension (LDAB,N) */
00095 /*          The upper or lower triangle of the symmetric band matrix A, */
00096 /*          stored in the first K+1 rows of AB.  The j-th column of A is */
00097 /*          stored in the j-th column of the array AB as follows: */
00098 /*          if UPLO = 'U', AB(k+1+i-j,j) = A(i,j) for max(1,j-k)<=i<=j; */
00099 /*          if UPLO = 'L', AB(1+i-j,j)   = A(i,j) for j<=i<=min(n,j+k). */
00100 
00101 /*  LDAB    (input) INTEGER */
00102 /*          The leading dimension of the array AB.  LDAB >= K+1. */
00103 
00104 /*  WORK    (workspace) REAL array, dimension (MAX(1,LWORK)), */
00105 /*          where LWORK >= N when NORM = 'I' or '1' or 'O'; otherwise, */
00106 /*          WORK is not referenced. */
00107 
00108 /* ===================================================================== */
00109 
00110 /*     .. Parameters .. */
00111 /*     .. */
00112 /*     .. Local Scalars .. */
00113 /*     .. */
00114 /*     .. External Subroutines .. */
00115 /*     .. */
00116 /*     .. External Functions .. */
00117 /*     .. */
00118 /*     .. Intrinsic Functions .. */
00119 /*     .. */
00120 /*     .. Executable Statements .. */
00121 
00122     /* Parameter adjustments */
00123     ab_dim1 = *ldab;
00124     ab_offset = 1 + ab_dim1;
00125     ab -= ab_offset;
00126     --work;
00127 
00128     /* Function Body */
00129     if (*n == 0) {
00130         value = 0.f;
00131     } else if (lsame_(norm, "M")) {
00132 
00133 /*        Find max(abs(A(i,j))). */
00134 
00135         value = 0.f;
00136         if (lsame_(uplo, "U")) {
00137             i__1 = *n;
00138             for (j = 1; j <= i__1; ++j) {
00139 /* Computing MAX */
00140                 i__2 = *k + 2 - j;
00141                 i__3 = *k + 1;
00142                 for (i__ = max(i__2,1); i__ <= i__3; ++i__) {
00143 /* Computing MAX */
00144                     r__2 = value, r__3 = (r__1 = ab[i__ + j * ab_dim1], dabs(
00145                             r__1));
00146                     value = dmax(r__2,r__3);
00147 /* L10: */
00148                 }
00149 /* L20: */
00150             }
00151         } else {
00152             i__1 = *n;
00153             for (j = 1; j <= i__1; ++j) {
00154 /* Computing MIN */
00155                 i__2 = *n + 1 - j, i__4 = *k + 1;
00156                 i__3 = min(i__2,i__4);
00157                 for (i__ = 1; i__ <= i__3; ++i__) {
00158 /* Computing MAX */
00159                     r__2 = value, r__3 = (r__1 = ab[i__ + j * ab_dim1], dabs(
00160                             r__1));
00161                     value = dmax(r__2,r__3);
00162 /* L30: */
00163                 }
00164 /* L40: */
00165             }
00166         }
00167     } else if (lsame_(norm, "I") || lsame_(norm, "O") || *(unsigned char *)norm == '1') {
00168 
00169 /*        Find normI(A) ( = norm1(A), since A is symmetric). */
00170 
00171         value = 0.f;
00172         if (lsame_(uplo, "U")) {
00173             i__1 = *n;
00174             for (j = 1; j <= i__1; ++j) {
00175                 sum = 0.f;
00176                 l = *k + 1 - j;
00177 /* Computing MAX */
00178                 i__3 = 1, i__2 = j - *k;
00179                 i__4 = j - 1;
00180                 for (i__ = max(i__3,i__2); i__ <= i__4; ++i__) {
00181                     absa = (r__1 = ab[l + i__ + j * ab_dim1], dabs(r__1));
00182                     sum += absa;
00183                     work[i__] += absa;
00184 /* L50: */
00185                 }
00186                 work[j] = sum + (r__1 = ab[*k + 1 + j * ab_dim1], dabs(r__1));
00187 /* L60: */
00188             }
00189             i__1 = *n;
00190             for (i__ = 1; i__ <= i__1; ++i__) {
00191 /* Computing MAX */
00192                 r__1 = value, r__2 = work[i__];
00193                 value = dmax(r__1,r__2);
00194 /* L70: */
00195             }
00196         } else {
00197             i__1 = *n;
00198             for (i__ = 1; i__ <= i__1; ++i__) {
00199                 work[i__] = 0.f;
00200 /* L80: */
00201             }
00202             i__1 = *n;
00203             for (j = 1; j <= i__1; ++j) {
00204                 sum = work[j] + (r__1 = ab[j * ab_dim1 + 1], dabs(r__1));
00205                 l = 1 - j;
00206 /* Computing MIN */
00207                 i__3 = *n, i__2 = j + *k;
00208                 i__4 = min(i__3,i__2);
00209                 for (i__ = j + 1; i__ <= i__4; ++i__) {
00210                     absa = (r__1 = ab[l + i__ + j * ab_dim1], dabs(r__1));
00211                     sum += absa;
00212                     work[i__] += absa;
00213 /* L90: */
00214                 }
00215                 value = dmax(value,sum);
00216 /* L100: */
00217             }
00218         }
00219     } else if (lsame_(norm, "F") || lsame_(norm, "E")) {
00220 
00221 /*        Find normF(A). */
00222 
00223         scale = 0.f;
00224         sum = 1.f;
00225         if (*k > 0) {
00226             if (lsame_(uplo, "U")) {
00227                 i__1 = *n;
00228                 for (j = 2; j <= i__1; ++j) {
00229 /* Computing MIN */
00230                     i__3 = j - 1;
00231                     i__4 = min(i__3,*k);
00232 /* Computing MAX */
00233                     i__2 = *k + 2 - j;
00234                     slassq_(&i__4, &ab[max(i__2, 1)+ j * ab_dim1], &c__1, &
00235                             scale, &sum);
00236 /* L110: */
00237                 }
00238                 l = *k + 1;
00239             } else {
00240                 i__1 = *n - 1;
00241                 for (j = 1; j <= i__1; ++j) {
00242 /* Computing MIN */
00243                     i__3 = *n - j;
00244                     i__4 = min(i__3,*k);
00245                     slassq_(&i__4, &ab[j * ab_dim1 + 2], &c__1, &scale, &sum);
00246 /* L120: */
00247                 }
00248                 l = 1;
00249             }
00250             sum *= 2;
00251         } else {
00252             l = 1;
00253         }
00254         slassq_(n, &ab[l + ab_dim1], ldab, &scale, &sum);
00255         value = scale * sqrt(sum);
00256     }
00257 
00258     ret_val = value;
00259     return ret_val;
00260 
00261 /*     End of SLANSB */
00262 
00263 } /* slansb_ */


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:56:10