OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
dscnrm2.f File Reference

Go to the source code of this file.

Functions/Subroutines

double precision function dscnrm2 (n, x, incx)

Function/Subroutine Documentation

◆ dscnrm2()

double precision function dscnrm2 ( integer n,
complex, dimension( * ) x,
integer incx )

Definition at line 1 of file dscnrm2.f.

2*
3* -- ScaLAPACK tools routine (version 1.7) --
4* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
5* and University of California, Berkeley.
6* May 1, 1997
7*
8* .. Scalar Arguments ..
9 INTEGER INCX, N
10* ..
11* .. Array Arguments ..
12 COMPLEX X( * )
13* ..
14*
15* Purpose
16* =======
17*
18* DSCNRM2 is a simple FORTRAN wrapper around the BLAS function SCNRM2
19* returning the result as a double allowing it to be callable by C
20* programs.
21*
22* =====================================================================
23*
24* .. External Functions ..
25 REAL SCNRM2
26 EXTERNAL scnrm2
27* ..
28* .. Intrinsic Functions ..
29 INTRINSIC dble
30* ..
31* .. Executable Statements ..
32*
33 dscnrm2 = dble( scnrm2( n, x, incx ) )
34*
35 RETURN
36*
37* End of DSCNRM2
38*
double precision function dscnrm2(n, x, incx)
Definition dscnrm2.f:2
real(wp) function scnrm2(n, x, incx)
SCNRM2
Definition scnrm2.f90:90