1DZNRM2(1) BLAS routine DZNRM2(1)
2
3
4
6 DZNRM2 - the euclidean norm of a vector via the function name, so that
7 DZNRM2 := sqrt( conjg( x' )*x ) -- This version written on 25-Octo‐
8 ber-1982
9
11 DOUBLE PRECISION FUNCTION DZNRM2(N,X,INCX)
12
13 INTEGER INCX,N
14
15 DOUBLE COMPLEX X(*)
16
18 DZNRM2 returns the euclidean norm of a vector via the function name, so
19 that
20 Modified on 14-October-1993 to inline the call to ZLASSQ.
21 Sven Hammarling, Nag Ltd.
22
23
24
25
26
27BLAS routine November 2006 DZNRM2(1)