Computes a vector-vector dot product.
FORTRAN 77:
res = cdotu(n, x, incx, y, incy)
res = zdotu(n, x, incx, y, incy)
FORTRAN 95:
res = dotu(x, y)
The ?dotu routines perform a vector-vector reduction operation defined as
where xi and yi are elements of complex vectors x and y.
INTEGER. Specifies the number of elements in vectors x and y.
COMPLEX for cdotu
DOUBLE COMPLEX for zdotu
Array, DIMENSION at least (1 + (n -1)*abs(incx)).
INTEGER. Specifies the increment for the elements of x.
COMPLEX for cdotu
DOUBLE COMPLEX for zdotu
Array, DIMENSION at least (1 + (n -1)*abs(incy)).
INTEGER. Specifies the increment for the elements of y.
COMPLEX for cdotu
DOUBLE COMPLEX for zdotu
Contains the result of the dot product of x and 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 dotu interface are the following:
Holds the vector with the number of elements n.
Holds the vector with the number of elements n.