1DNRM2(1) BLAS routine DNRM2(1)
23
4
NAME
6DNRM2 - the euclidean norm of a vector via the function name, so that
7DNRM2 := sqrt( x'*x ) -- This version written on 25-October-1982
8
SYNOPSIS
10DOUBLE PRECISION FUNCTION DNRM2(N,X,INCX)
1112
INTEGER INCX,N
1314
DOUBLE PRECISION X(*)
15
PURPOSE
17DNRM2 returns the euclidean norm of a vector via the function name, so
18that
19Modified on 14-October-1993 to inline the call to DLASSQ.
20Sven Hammarling, Nag Ltd.
2122
23
24
25
26
BLAS routine November 2006 DNRM2(1)