1DZNRM2(1) BLAS routine DZNRM2(1)
2
3
4
6 DZNRM2 - returns the euclidean norm of a vector via the function name,
7 so that DZNRM2 := sqrt( conjg( x' )*x ) Further Details
8 =============== -- This version written on 25-October-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
26BLAS routine November 2008 DZNRM2(1)