Computes a dot product of a conjugated vector with another vector.
FORTRAN 77:
res = cdotc(n, x, incx, y, incy)
res = zdotc(n, x, incx, y, incy)
Fortran 95:
res = dotc(x, y)
The FORTRAN 77 interfaces are specified in the mkl_blas.fi include file, the Fortran 95 interfaces are specified in the blas.f90 include file, and the C interfaces are specified in the mkl_blas.h include file.
The ?dotc routines perform a vector-vector operation defined asres = ∑(conjg(x)*y)
where x and y are n-element vectors.
INTEGER. Specifies the number of elements in vectors x and y.
COMPLEX for cdotc
DOUBLE COMPLEX for zdotc
Array, DIMENSION at least (1 + (n -1)*abs(incx)).
INTEGER. Specifies the increment for the elements of x.
COMPLEX for cdotc
DOUBLE COMPLEX for zdotc
Array, DIMENSION at least (1 + (n -1)*abs(incy)).
INTEGER. Specifies the increment for the elements of y.
COMPLEX for cdotc
DOUBLE COMPLEX for zdotc
Contains the result of the dot product of the conjugated x and unconjugated y, if n is positive. Otherwise, res contains 0.
Routines in Fortran 95 interface have fewer arguments in the calling sequence than their FORTRAN 77 counterparts. For general conventions applied to skip redundant or reconstructible arguments, see Fortran 95 Interface Conventions.
Specific details for the routine dotc interface are the following:
Holds the vector with the number of elements n.
Holds the vector with the number of elements n.
Copyright © 1994 - 2010, Intel Corporation. All rights reserved.