Struct nalgebra::linalg::SymmetricTridiagonal [−][src]
pub struct SymmetricTridiagonal<N: ComplexField, D: DimSub<U1>> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>, { /* fields omitted */ }
Expand description
Tridiagonalization of a symmetric matrix.
Implementations
impl<N: ComplexField, D: DimSub<U1>> SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
impl<N: ComplexField, D: DimSub<U1>> SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
Computes the tridiagonalization of the symmetric matrix m
.
Only the lower-triangular part (including the diagonal) of m
is read.
Retrieve the orthogonal transformation, diagonal, and off diagonal elements of this decomposition.
Retrieve the diagonal, and off diagonal elements of this decomposition.
The diagonal components of this decomposition.
The off-diagonal components of this decomposition.
Trait Implementations
impl<N: Clone + ComplexField, D: Clone + DimSub<U1>> Clone for SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
impl<N: Clone + ComplexField, D: Clone + DimSub<U1>> Clone for SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
impl<N: Debug + ComplexField, D: Debug + DimSub<U1>> Debug for SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
impl<N: Debug + ComplexField, D: Debug + DimSub<U1>> Debug for SymmetricTridiagonal<N, D> where
DefaultAllocator: Allocator<N, D, D> + Allocator<N, DimDiff<D, U1>>,
Auto Trait Implementations
impl<N, D> !RefUnwindSafe for SymmetricTridiagonal<N, D>
impl<N, D> !Send for SymmetricTridiagonal<N, D>
impl<N, D> !Sync for SymmetricTridiagonal<N, D>
impl<N, D> !Unpin for SymmetricTridiagonal<N, D>
impl<N, D> !UnwindSafe for SymmetricTridiagonal<N, D>
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
Checks if self
is actually part of its subset T
(and can be converted to it).
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
The inclusion map: converts self
to the equivalent element of its superset.