pub struct QrPullback { /* private fields */ }Implementations§
Source§impl QrPullback
impl QrPullback
Sourcepub fn backward(
&self,
dq: MatrixView<'_>,
dr: MatrixView<'_>,
) -> Result<Matrix, SolverError>
pub fn backward( &self, dq: MatrixView<'_>, dr: MatrixView<'_>, ) -> Result<Matrix, SolverError>
Local derivative with a FIXED pivot permutation; nonsmooth pivot switches are not differentiated. Returns cotangent in the ORIGINAL column order.
Trait Implementations§
Source§impl Clone for QrPullback
impl Clone for QrPullback
Source§fn clone(&self) -> QrPullback
fn clone(&self) -> QrPullback
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QrPullback
impl RefUnwindSafe for QrPullback
impl Send for QrPullback
impl Sync for QrPullback
impl Unpin for QrPullback
impl UnsafeUnpin for QrPullback
impl UnwindSafe for QrPullback
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