Skip to main content

eig

Function eig 

Source
pub fn eig(
    matrix: &ArrayView2<'_, f64>,
) -> Result<(Array1<Complex64>, Array2<Complex64>), String>
Expand description

Full eigenvalue decomposition is not implemented in this no-SciRS2 fallback (a numerically stable general eigensolver – e.g. the shifted-QR algorithm with deflation – is well beyond a “naive” reimplementation); honestly report the limitation rather than return a fixed, wrong-sized identity-like result.