[][src]Struct ndarray_linalg::tridiagonal::LUFactorizedTridiagonal

pub struct LUFactorizedTridiagonal<A: Scalar> {
    pub a: Tridiagonal<A>,
    pub du2: Vec<A>,
    pub anom: A::Real,
    pub ipiv: Pivot,
}

Represents the LU factorization of a tridiagonal matrix A as A = P*L*U.

Fields

a: Tridiagonal<A>

A tridiagonal matrix which consists of

  • l : layout of raw matrix
  • dl: (n-1) multipliers that define the matrix L.
  • d : (n) diagonal elements of the upper triangular matrix U.
  • du: (n-1) elements of the first super-diagonal of U.
du2: Vec<A>

(n-2) elements of the second super-diagonal of U.

anom: A::Real

1-norm of raw matrix (used in .rcond_tridiagonal()).

ipiv: Pivot

The pivot indices that define the permutation matrix P.

Trait Implementations

impl<A: Clone + Scalar> Clone for LUFactorizedTridiagonal<A> where
    A::Real: Clone
[src]

impl<A> ReciprocalConditionNumTridiagonal<A> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

impl<A> ReciprocalConditionNumTridiagonalInto<A> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

impl<A> SolveTridiagonal<A, Dim<[usize; 1]>> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

impl<A> SolveTridiagonal<A, Dim<[usize; 2]>> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

impl<A> SolveTridiagonalInplace<A, Dim<[usize; 2]>> for LUFactorizedTridiagonal<A> where
    A: Scalar + Lapack
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for LUFactorizedTridiagonal<A> where
    A: RefUnwindSafe,
    <A as Scalar>::Real: RefUnwindSafe

impl<A> Send for LUFactorizedTridiagonal<A> where
    A: Send,
    <A as Scalar>::Real: Send

impl<A> Sync for LUFactorizedTridiagonal<A> where
    A: Sync,
    <A as Scalar>::Real: Sync

impl<A> Unpin for LUFactorizedTridiagonal<A> where
    A: Unpin,
    <A as Scalar>::Real: Unpin

impl<A> UnwindSafe for LUFactorizedTridiagonal<A> where
    A: UnwindSafe,
    <A as Scalar>::Real: 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> 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.