[][src]Struct opensrdk_linear_algebra::diagonalized::Diagonalized

pub struct Diagonalized<U>(pub Matrix<Square, U>, pub Matrix<Diagonal, U>, pub Matrix<Square, U>)
where
    U: Number
;

Diagonalized

A = P * Lambda * P^{-1}

Implementations

impl Diagonalized<f64>[src]

pub fn inv(&self) -> Matrix<Square, f64>[src]

pub fn det(&self) -> f64[src]

impl Diagonalized<c64>[src]

pub fn inv(&self) -> Matrix<Square, c64>[src]

pub fn det(&self) -> c64[src]

Auto Trait Implementations

impl<U> RefUnwindSafe for Diagonalized<U> where
    U: RefUnwindSafe

impl<U> Send for Diagonalized<U>

impl<U> Sync for Diagonalized<U>

impl<U> Unpin for Diagonalized<U> where
    U: Unpin

impl<U> UnwindSafe for Diagonalized<U> where
    U: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.