[−][src]Struct ndarray_linalg::solve::LUFactorized
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: PivotThe pivot indices that define the permutation matrix P.
Trait Implementations
impl<A, S> Solve<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
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]
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>,
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]
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>,
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]
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>
) -> Result<&'a mut ArrayBase<Sb, Ix1>> where
Sb: DataMut<Elem = A>,
fn solve<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>[src]
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]
&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]
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]
&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]
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]
&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> Inverse for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
S: Data<Elem = A>,
impl<A, S> InverseInto for LUFactorized<S> where
A: Scalar + Lapack,
S: DataMut<Elem = A>, [src]
A: Scalar + Lapack,
S: DataMut<Elem = A>,
impl<A, S> Determinant<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
S: Data<Elem = A>,
fn sln_det(&self) -> Result<(A, A::Real)>[src]
fn det(&self) -> Result<A>[src]
Computes the determinant of the matrix.
impl<A, S> DeterminantInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
S: Data<Elem = A>,
fn sln_det_into(self) -> Result<(A, A::Real)>[src]
fn det_into(self) -> Result<A>[src]
Computes the determinant of the matrix.
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
S: Data<Elem = A>,
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S> where
A: Scalar + Lapack,
S: Data<Elem = A>, [src]
A: Scalar + Lapack,
S: Data<Elem = A>,
fn rcond_into(self) -> Result<A::Real>[src]
Auto Trait Implementations
impl<S> Send for LUFactorized<S> where
S: Send,
S: Send,
impl<S> Sync for LUFactorized<S> where
S: Sync,
S: Sync,
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,