LAPACK 3.12.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches
dnrm2sub.f
Go to the documentation of this file.
1c dnrm2sub.f
2c
3c The program is a fortran wrapper for dnrm2.
4c Witten by Keita Teranishi. 2/11/1998
5c
6 subroutine dnrm2sub(n,x,incx,nrm2)
7c
8 external dnrm2
9 double precision dnrm2,nrm2
10 integer n,incx
11 double precision x(*)
12c
13 nrm2=dnrm2(n,x,incx)
14 return
15 end
subroutine dnrm2sub(n, x, incx, nrm2)
Definition dnrm2sub.f:7
real(wp) function dnrm2(n, x, incx)
DNRM2
Definition dnrm2.f90:89