pub struct Lu<I: Index, E: Entity> { /* private fields */ }Expand description
Sparse LU factorization.
Implementations§
source§impl<I: Index, E: ComplexField> Lu<I, E>
impl<I: Index, E: ComplexField> Lu<I, E>
sourcepub fn try_new_with_symbolic(
symbolic: SymbolicLu<I>,
mat: SparseColMatRef<'_, I, E>
) -> Result<Self, LuError>
pub fn try_new_with_symbolic( symbolic: SymbolicLu<I>, mat: SparseColMatRef<'_, I, E> ) -> Result<Self, LuError>
Returns the LU factorization of the input matrix with the same sparsity pattern as the original one used to construct the symbolic factorization.
Trait Implementations§
Auto Trait Implementations§
impl<I, E> RefUnwindSafe for Lu<I, E>where
I: RefUnwindSafe,
<<E as Entity>::Group as ForType>::FaerOf<Vec<<E as Entity>::Unit>>: RefUnwindSafe,
impl<I, E> Send for Lu<I, E>
impl<I, E> Sync for Lu<I, E>
impl<I, E> Unpin for Lu<I, E>
impl<I, E> UnwindSafe for Lu<I, E>where
I: UnwindSafe + RefUnwindSafe,
<<E as Entity>::Group as ForType>::FaerOf<Vec<<E as Entity>::Unit>>: 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> Pointable for T
impl<T> Pointable for T
source§impl<E, Dec> SpSolver<E> for Dec
impl<E, Dec> SpSolver<E> for Dec
source§fn solve_in_place(&self, rhs: impl ColBatchMut<E>)
fn solve_in_place(&self, rhs: impl ColBatchMut<E>)
Solves the equation
self * X = rhs, and stores the result in rhs.source§fn solve_conj_in_place(&self, rhs: impl ColBatchMut<E>)
fn solve_conj_in_place(&self, rhs: impl ColBatchMut<E>)
Solves the equation
conjugate(self) * X = rhs, and stores the result in rhs.source§fn solve_transpose_in_place(&self, rhs: impl ColBatchMut<E>)
fn solve_transpose_in_place(&self, rhs: impl ColBatchMut<E>)
Solves the equation
transpose(self) * X = rhs, and stores the result in rhs.source§fn solve_conj_transpose_in_place(&self, rhs: impl ColBatchMut<E>)
fn solve_conj_transpose_in_place(&self, rhs: impl ColBatchMut<E>)
Solves the equation
adjoint(self) * X = rhs, and stores the result in rhs.source§fn solve<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
fn solve<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
Solves the equation
self * X = rhs, and returns the result.source§fn solve_conj<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
fn solve_conj<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
Solves the equation
conjugate(self) * X = rhs, and returns the result.source§fn solve_transpose<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
fn solve_transpose<ViewE, B>(&self, rhs: B) -> <B as ColBatch<ViewE>>::Owned
Solves the equation
transpose(self) * X = rhs, and returns the result.