Skip to main content

eig

Function eig 

Source
pub fn eig(a: &TracedTensor) -> (TracedTensor, TracedTensor)
Expand description

Non-symmetric eigendecomposition.

For real f64 input, both outputs are Complex64.

§Examples

let (values, vectors) = tenferro::eig(&a);