Struct ndarray_linalg::solve::LUFactorized
source · pub struct LUFactorized<S: Data + RawDataClone> { /* private fields */ }
Expand description
Represents the LU factorization of a matrix A
as A = P*L*U
.
Trait Implementations§
source§impl<S: Clone + Data + RawDataClone> Clone for LUFactorized<S>
impl<S: Clone + Data + RawDataClone> Clone for LUFactorized<S>
source§fn clone(&self) -> LUFactorized<S>
fn clone(&self) -> LUFactorized<S>
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, S> Determinant<A> for LUFactorized<S>
impl<A, S> Determinant<A> for LUFactorized<S>
source§impl<A, S> DeterminantInto<A> for LUFactorized<S>
impl<A, S> DeterminantInto<A> for LUFactorized<S>
source§impl<A, S> Inverse for LUFactorized<S>
impl<A, S> Inverse for LUFactorized<S>
source§impl<A, S> InverseInto for LUFactorized<S>
impl<A, S> InverseInto for LUFactorized<S>
source§impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S>
impl<A, S> ReciprocalConditionNum<A> for LUFactorized<S>
source§impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S>
impl<A, S> ReciprocalConditionNumInto<A> for LUFactorized<S>
source§impl<A, S> Solve<A> for LUFactorized<S>
impl<A, S> Solve<A> for LUFactorized<S>
source§fn solve_inplace<'a, Sb>(
&self,
rhs: &'a mut ArrayBase<Sb, Ix1>,
) -> Result<&'a mut ArrayBase<Sb, Ix1>>where
Sb: DataMut<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>,
Solves a system of linear equations
A * x = b
where A
is self
, b
is the argument, and x
is the successful result. Read moresource§fn solve_t_inplace<'a, Sb>(
&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>,
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 moresource§fn solve_h_inplace<'a, Sb>(
&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>,
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 moresource§fn solve<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>
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 moresource§fn solve_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>,
) -> Result<ArrayBase<S, Ix1>>
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 moresource§fn solve_t<S: Data<Elem = A>>(&self, b: &ArrayBase<S, Ix1>) -> Result<Array1<A>>
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 moresource§fn solve_t_into<S: DataMut<Elem = A>>(
&self,
b: ArrayBase<S, Ix1>,
) -> Result<ArrayBase<S, Ix1>>
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 moreAuto Trait Implementations§
impl<S> Freeze for LUFactorized<S>where
S: Freeze,
impl<S> RefUnwindSafe for LUFactorized<S>
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>
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
)