Struct lax::tridiagonal::LUFactorizedTridiagonal
source · pub struct LUFactorizedTridiagonal<A: Scalar> {
pub a: Tridiagonal<A>,
pub du2: Vec<A>,
pub ipiv: Pivot,
pub a_opnorm_one: A::Real,
}
Expand description
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.
ipiv: Pivot
The pivot indices that define the permutation matrix P
.
a_opnorm_one: A::Real
Trait Implementations§
source§impl<A: Clone + Scalar> Clone for LUFactorizedTridiagonal<A>where
A::Real: Clone,
impl<A: Clone + Scalar> Clone for LUFactorizedTridiagonal<A>where
A::Real: Clone,
source§fn clone(&self) -> LUFactorizedTridiagonal<A>
fn clone(&self) -> LUFactorizedTridiagonal<A>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<A: PartialEq + Scalar> PartialEq for LUFactorizedTridiagonal<A>where
A::Real: PartialEq,
impl<A: PartialEq + Scalar> PartialEq for LUFactorizedTridiagonal<A>where
A::Real: PartialEq,
impl<A: Scalar> StructuralPartialEq for LUFactorizedTridiagonal<A>
Auto Trait Implementations§
impl<A> Freeze for LUFactorizedTridiagonal<A>where
<A as Scalar>::Real: Freeze,
impl<A> RefUnwindSafe for LUFactorizedTridiagonal<A>where
<A as Scalar>::Real: RefUnwindSafe,
A: RefUnwindSafe,
impl<A> Send for LUFactorizedTridiagonal<A>
impl<A> Sync for LUFactorizedTridiagonal<A>
impl<A> Unpin for LUFactorizedTridiagonal<A>
impl<A> UnwindSafe for LUFactorizedTridiagonal<A>where
<A as Scalar>::Real: UnwindSafe,
A: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)