pub fn dotu_c32_ndarray(
x: &Array1<Complex32>,
y: &Array1<Complex32>,
) -> Complex32Expand description
Computes the unconjugated dot product of two Complex32 vectors (CDOTU).
x · y = Σ x[i] * y[i]
§Panics
Panics if vectors have different lengths.