1DNRM2(1) BLAS routine DNRM2(1)
2
3
4
6 DNRM2 - returns the euclidean norm of a vector via the function name,
7 so that DNRM2 := sqrt( x'*x ) Further Details =============== --
8 This version written on 25-October-1982
9
11 DOUBLE PRECISION FUNCTION DNRM2(N,X,INCX)
12
13 INTEGER INCX,N
14
15 DOUBLE PRECISION X(*)
16
18 DNRM2 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 DLASSQ.
21 Sven Hammarling, Nag Ltd.
22
23
24
25
26BLAS routine November 2008 DNRM2(1)