LAPACK  3.9.0
LAPACK: Linear Algebra PACKage
dznrm2.f
Go to the documentation of this file.
1 *> \brief \b DZNRM2
2 *
3 * =========== DOCUMENTATION ===========
4 *
5 * Online html documentation available at
6 * http://www.netlib.org/lapack/explore-html/
7 *
8 * Definition:
9 * ===========
10 *
11 * DOUBLE PRECISION FUNCTION DZNRM2(N,X,INCX)
12 *
13 * .. Scalar Arguments ..
14 * INTEGER INCX,N
15 * ..
16 * .. Array Arguments ..
17 * COMPLEX*16 X(*)
18 * ..
19 *
20 *
21 *> \par Purpose:
22 * =============
23 *>
24 *> \verbatim
25 *>
26 *> DZNRM2 returns the euclidean norm of a vector via the function
27 *> name, so that
28 *>
29 *> DZNRM2 := sqrt( x**H*x )
30 *> \endverbatim
31 *
32 * Arguments:
33 * ==========
34 *
35 *> \param[in] N
36 *> \verbatim
37 *> N is INTEGER
38 *> number of elements in input vector(s)
39 *> \endverbatim
40 *>
41 *> \param[in] X
42 *> \verbatim
43 *> X is COMPLEX*16 array, dimension (N)
44 *> complex vector with N elements
45 *> \endverbatim
46 *>
47 *> \param[in] INCX
48 *> \verbatim
49 *> INCX is INTEGER
50 *> storage spacing between elements of X
51 *> \endverbatim
52 *
53 * Authors:
54 * ========
55 *
56 *> \author Univ. of Tennessee
57 *> \author Univ. of California Berkeley
58 *> \author Univ. of Colorado Denver
59 *> \author NAG Ltd.
60 *
61 *> \date November 2017
62 *
63 *> \ingroup double_blas_level1
64 *
65 *> \par Further Details:
66 * =====================
67 *>
68 *> \verbatim
69 *>
70 *> -- This version written on 25-October-1982.
71 *> Modified on 14-October-1993 to inline the call to ZLASSQ.
72 *> Sven Hammarling, Nag Ltd.
73 *> \endverbatim
74 *>
75 * =====================================================================
76  DOUBLE PRECISION FUNCTION dznrm2(N,X,INCX)
77 *
78 * -- Reference BLAS level1 routine (version 3.8.0) --
79 * -- Reference BLAS is a software package provided by Univ. of Tennessee, --
80 * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
81 * November 2017
82 *
83 * .. Scalar Arguments ..
84  INTEGER incx,n
85 * ..
86 * .. Array Arguments ..
87  COMPLEX*16 x(*)
88 * ..
89 *
90 * =====================================================================
91 *
92 * .. Parameters ..
93  DOUBLE PRECISION one,zero
94  parameter(one=1.0d+0,zero=0.0d+0)
95 * ..
96 * .. Local Scalars ..
97  DOUBLE PRECISION norm,scale,ssq,temp
98  INTEGER ix
99 * ..
100 * .. Intrinsic Functions ..
101  INTRINSIC abs,dble,dimag,sqrt
102 * ..
103  IF (n.LT.1 .OR. incx.LT.1) THEN
104  norm = zero
105  ELSE
106  scale = zero
107  ssq = one
108 * The following loop is equivalent to this call to the LAPACK
109 * auxiliary routine:
110 * CALL ZLASSQ( N, X, INCX, SCALE, SSQ )
111 *
112  DO 10 ix = 1,1 + (n-1)*incx,incx
113  IF (dble(x(ix)).NE.zero) THEN
114  temp = abs(dble(x(ix)))
115  IF (scale.LT.temp) THEN
116  ssq = one + ssq* (scale/temp)**2
117  scale = temp
118  ELSE
119  ssq = ssq + (temp/scale)**2
120  END IF
121  END IF
122  IF (dimag(x(ix)).NE.zero) THEN
123  temp = abs(dimag(x(ix)))
124  IF (scale.LT.temp) THEN
125  ssq = one + ssq* (scale/temp)**2
126  scale = temp
127  ELSE
128  ssq = ssq + (temp/scale)**2
129  END IF
130  END IF
131  10 CONTINUE
132  norm = scale*sqrt(ssq)
133  END IF
134 *
135  dznrm2 = norm
136  RETURN
137 *
138 * End of DZNRM2.
139 *
140  END
dznrm2
double precision function dznrm2(N, X, INCX)
DZNRM2
Definition: dznrm2.f:77