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.
Methods
impl<N: HessenbergScalar + Zero, D: DimSub<U1>> Hessenberg<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, [src]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
pub fn new(m: MatrixN<N, D>) -> Hessenberg<N, D>[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]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
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]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
fn clone(&self) -> Hessenberg<N, D>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
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]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<N: Scalar, 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]
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
MatrixN<N, D>: Copy,
VectorN<N, DimDiff<D, U1>>: Copy,