Intel® oneAPI Math Kernel Library Developer Reference - C
Computes a dot product of a conjugated vector with another vector.
void cblas_cdotc_sub (const MKL_INT n, const void *x, const MKL_INT incx, const void *y, const MKL_INT incy, void *dotc);
void cblas_zdotc_sub (const MKL_INT n, const void *x, const MKL_INT incx, const void *y, const MKL_INT incy, void *dotc);
The ?dotc routines perform a vector-vector operation defined as:
where xi and yi are elements of vectors x and y.
Specifies the number of elements in vectors x and y.
Array, size at least (1 + (n -1)*abs(incx)).
Specifies the increment for the elements of x.
Array, size at least (1 + (n -1)*abs(incy)).
Specifies the increment for the elements of y.
Contains the result of the dot product of the conjugated x and unconjugated y, if n is positive. Otherwise, it contains 0.