pub fn dotc_c32_ndarray(
x: &Array1<Complex32>,
y: &Array1<Complex32>,
) -> Complex32Expand 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.