Trait Eigen

Source
pub trait Eigen<const N: usize> {
    // Required method
    fn eigen<D: DualNum<f64> + Copy>(
        matrix: SMatrix<D, N, N>,
    ) -> (D, SVector<D, N>);
}

Required Methods§

Source

fn eigen<D: DualNum<f64> + Copy>(matrix: SMatrix<D, N, N>) -> (D, SVector<D, N>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Eigen<1> for Const<1>

Source§

fn eigen<D: DualNum<f64> + Copy>(matrix: SMatrix<D, 1, 1>) -> (D, SVector<D, 1>)

Source§

impl Eigen<2> for Const<2>

Source§

fn eigen<D: DualNum<f64> + Copy>(matrix: SMatrix<D, 2, 2>) -> (D, SVector<D, 2>)

Implementors§