pub struct LeastSquaresOutput<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 LeastSquaresOutput<A>
impl<A> RefUnwindSafe for LeastSquaresOutput<A>
impl<A> Send for LeastSquaresOutput<A>
impl<A> Sync for LeastSquaresOutput<A>
impl<A> Unpin for LeastSquaresOutput<A>
impl<A> UnwindSafe for LeastSquaresOutput<A>
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