Function svd_complex_ndarray
Source pub fn svd_complex_ndarray<T>(
a: &Array2<T>,
) -> LapackResult<ComplexSvdResult<T>>
Expand description
Computes the SVD of a complex matrix using ComplexSvd algorithm.
For complex matrices, this function uses the one-sided Jacobi algorithm
specifically designed for complex numbers.
§Arguments
a - The input complex matrix (m×n)
§Returns
U, singular values (real), and V^H