Struct lax::least_squares::LeastSquaresRef
source · pub struct LeastSquaresRef<'work, A: Scalar> {
pub singular_values: &'work [A::Real],
pub rank: i32,
}
Expand description
Result of LeastSquares
Fields§
§singular_values: &'work [A::Real]
singular values
rank: i32
The rank of the input matrix A
Auto Trait Implementations§
impl<'work, A> Freeze for LeastSquaresRef<'work, A>
impl<'work, A> RefUnwindSafe for LeastSquaresRef<'work, A>where
<A as Scalar>::Real: RefUnwindSafe,
impl<'work, A> Send for LeastSquaresRef<'work, A>where
<A as Scalar>::Real: Sync,
impl<'work, A> Sync for LeastSquaresRef<'work, A>where
<A as Scalar>::Real: Sync,
impl<'work, A> Unpin for LeastSquaresRef<'work, A>
impl<'work, A> UnwindSafe for LeastSquaresRef<'work, A>where
<A as Scalar>::Real: RefUnwindSafe,
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