pub fn dotu_c64_ndarray(
x: &Array1<Complex64>,
y: &Array1<Complex64>,
) -> Complex64Expand description
Computes the unconjugated dot product of two Complex64 vectors (ZDOTU).
x · y = Σ x[i] * y[i]
Note: This is the bilinear form, not the standard inner product.
For the standard inner product (sesquilinear), use dotc_c64_ndarray.
§Panics
Panics if vectors have different lengths.