pub struct SymbolicSupernodalQr<I> { /* private fields */ }Expand description
symbolic structure of the $QR$ decomposition,
Implementations§
Source§impl<I: Index> SymbolicSupernodalQr<I>
impl<I: Index> SymbolicSupernodalQr<I>
Sourcepub fn R_adjoint(&self) -> &SymbolicSupernodalCholesky<I>
pub fn R_adjoint(&self) -> &SymbolicSupernodalCholesky<I>
returns the symbolic structure of $R^H$
Sourcepub fn householder(&self) -> &SymbolicSupernodalHouseholder<I>
pub fn householder(&self) -> &SymbolicSupernodalHouseholder<I>
returns the symbolic structure of the householder and $t$ factors
Sourcepub fn solve_in_place_scratch<T: ComplexField>(
&self,
rhs_ncols: usize,
par: Par,
) -> StackReq
pub fn solve_in_place_scratch<T: ComplexField>( &self, rhs_ncols: usize, par: Par, ) -> StackReq
computes the size and alignment of the workspace required to solve the linear system $A x = \text{rhs}$ in the sense of least squares
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for SymbolicSupernodalQr<I>
impl<I> RefUnwindSafe for SymbolicSupernodalQr<I>where
I: RefUnwindSafe,
impl<I> Send for SymbolicSupernodalQr<I>where
I: Send,
impl<I> Sync for SymbolicSupernodalQr<I>where
I: Sync,
impl<I> Unpin for SymbolicSupernodalQr<I>where
I: Unpin,
impl<I> UnwindSafe for SymbolicSupernodalQr<I>where
I: 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> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more