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

Go to the source code of this file.

Functions/Subroutines

subroutine zzdotc (n, dotc, x, incx, y, incy)

Function/Subroutine Documentation

◆ zzdotc()

subroutine zzdotc ( integer n,
complex*16 dotc,
complex*16, dimension( * ) x,
integer incx,
complex*16, dimension( * ) y,
integer incy )

Definition at line 1 of file zzdotc.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, INCY, N
10 COMPLEX*16 DOTC
11* ..
12* .. Array Arguments ..
13 COMPLEX*16 X( * ), Y( * )
14* ..
15*
16* Purpose
17* =======
18*
19* ZZDOTC is a simple FORTRAN wrapper around the BLAS function
20* ZDOTC returning the result in the parameter list instead.
21*
22* =====================================================================
23*
24* .. External Functions ..
25 COMPLEX*16 ZDOTC
26 EXTERNAL zdotc
27* ..
28* .. Executable Statements ..
29*
30 dotc = zdotc( n, x, incx, y, incy )
31*
32 RETURN
33*
34* End of ZZDOTC
35*
complex *16 function zdotc(n, zx, incx, zy, incy)
ZDOTC
Definition zdotc.f:83