Struct nalgebra_lapack::Hessenberg[][src]

pub struct Hessenberg<N: Scalar, D: DimSub<U1>> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, 
{ /* fields omitted */ }

The Hessenberg decomposition of a general matrix.

Implementations

impl<N: HessenbergScalar + Zero, D: DimSub<U1>> Hessenberg<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, 
[src]

pub fn new(m: MatrixN<N, D>) -> Self[src]

Computes the hessenberg decomposition of the matrix m.

pub fn h(&self) -> MatrixN<N, D>[src]

Computes the hessenberg matrix of this decomposition.

impl<N: HessenbergReal + Zero, D: DimSub<U1>> Hessenberg<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, 
[src]

pub fn unpack(self) -> (MatrixN<N, D>, MatrixN<N, D>)[src]

Computes the matrices (Q, H) of this decomposition.

pub fn q(&self) -> MatrixN<N, D>[src]

Computes the unitary matrix Q of this decomposition.

Trait Implementations

impl<N: Clone + Scalar, D: Clone + DimSub<U1>> Clone for Hessenberg<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, 
[src]

impl<N: Scalar + Copy, D: DimSub<U1>> Copy for Hessenberg<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
    MatrixN<N, D>: Copy,
    VectorN<N, DimDiff<D, U1>>: Copy
[src]

impl<N: Debug + Scalar, D: Debug + DimSub<U1>> Debug for Hessenberg<N, D> where
    DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, 
[src]

Auto Trait Implementations

impl<N, D> !RefUnwindSafe for Hessenberg<N, D>

impl<N, D> !Send for Hessenberg<N, D>

impl<N, D> !Sync for Hessenberg<N, D>

impl<N, D> !Unpin for Hessenberg<N, D>

impl<N, D> !UnwindSafe for Hessenberg<N, D>

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,