Struct ndarray_linalg::solve::LUFactorized [−][src]
pub struct LUFactorized<S: Data + RawDataClone> { /* fields omitted */ }
Expand description
Represents the LU factorization of a matrix A
as A = P*L*U
.
Trait Implementations
impl<A, S> Determinant<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> Determinant<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> DeterminantInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> DeterminantInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> Inverse for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> Inverse for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> InverseInto for LUFactorized<S> where
A: Scalar + Lapack,
S: DataMut<Elem = A> + RawDataClone,
impl<A, S> InverseInto for LUFactorized<S> where
A: Scalar + Lapack,
S: DataMut<Elem = A> + RawDataClone,
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
Estimates the reciprocal of the condition number of the matrix in 1-norm. Read more
impl<A, S> Solve<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
impl<A, S> Solve<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A> + RawDataClone,
Solves a system of linear equations A * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A^T * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A^H * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A^T * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A^T * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Solves a system of linear equations A^H * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read more
Auto Trait Implementations
impl<S> RefUnwindSafe for LUFactorized<S> where
S: RefUnwindSafe,
<S as RawData>::Elem: RefUnwindSafe,
impl<S> Send for LUFactorized<S> where
S: Send,
impl<S> Sync for LUFactorized<S> where
S: Sync,
impl<S> Unpin for LUFactorized<S> where
S: Unpin,
impl<S> UnwindSafe for LUFactorized<S> where
S: UnwindSafe,
<S as RawData>::Elem: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more