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