dotc_c32_ndarray

Function dotc_c32_ndarray 

Source
pub fn dotc_c32_ndarray(
    x: &Array1<Complex32>,
    y: &Array1<Complex32>,
) -> Complex32
Expand description

Computes the conjugate dot product of two Complex32 vectors (CDOTC).

x^H · y = Σ conj(x[i]) * y[i]

§Panics

Panics if vectors have different lengths.