Struct ndarray_linalg::solve::LUFactorized [−][src]
Represents the LU factorization of a matrix A as A = P*L*U.
Fields
a: ArrayBase<S, Ix2>
The factors L and U; the unit diagonal elements of L are not
stored.
ipiv: Pivot
The pivot indices that define the permutation matrix P.
Trait Implementations
impl<A, S> Solve<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> Solve<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, fn solve_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, [src]
fn solve_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, 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
fn solve_t_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, [src]
fn solve_t_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, 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
fn solve_h_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, [src]
fn solve_h_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>, 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
fn solve<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]
fn solve<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>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
fn solve_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>[src]
fn solve_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>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
fn solve_t<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]
fn solve_t<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>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
fn solve_t_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>[src]
fn solve_t_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>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
fn solve_h<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]
fn solve_h<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>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
fn solve_h_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>[src]
fn solve_h_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>
) -> Result<ArrayBase<S, Ix1>>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
impl<A, S> InverseInto for LUFactorized<S> where
A: Scalar,
S: DataMut<Elem = A>, [src]
impl<A, S> InverseInto for LUFactorized<S> where
A: Scalar,
S: DataMut<Elem = A>, type Output = ArrayBase<S, Ix2>
fn inv_into(self) -> Result<ArrayBase<S, Ix2>>[src]
fn inv_into(self) -> Result<ArrayBase<S, Ix2>>Computes the inverse of the matrix.
impl<A, S> Inverse for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> Inverse for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, impl<A, S> Determinant<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> Determinant<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, fn sln_det(&self) -> Result<(A, A::Real)>[src]
fn sln_det(&self) -> Result<(A, A::Real)>Computes the (sign, natural_log) of the determinant of the matrix. Read more
fn det(&self) -> Result<A>[src]
fn det(&self) -> Result<A>Computes the determinant of the matrix.
impl<A, S> DeterminantInto<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> DeterminantInto<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, fn sln_det_into(self) -> Result<(A, A::Real)>[src]
fn sln_det_into(self) -> Result<(A, A::Real)>Computes the (sign, natural_log) of the determinant of the matrix. Read more
fn det_into(self) -> Result<A>[src]
fn det_into(self) -> Result<A>Computes the determinant of the matrix.
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, fn rcond(&self) -> Result<A::Real>[src]
fn rcond(&self) -> Result<A::Real>Estimates the reciprocal of the condition number of the matrix in 1-norm. Read more
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, [src]
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar,
S: Data<Elem = A>, fn rcond_into(self) -> Result<A::Real>[src]
fn rcond_into(self) -> Result<A::Real>Estimates the reciprocal of the condition number of the matrix in 1-norm. Read more
Auto Trait Implementations
impl<S> Send for LUFactorized<S> where
S: Send,
impl<S> Send for LUFactorized<S> where
S: Send, impl<S> Sync for LUFactorized<S> where
S: Sync,
impl<S> Sync for LUFactorized<S> where
S: Sync,