pub struct NllsProblemSolution {
pub parameters: Vec<Vec<f64>>,
pub summary: SolverSummary,
}Expand description
Solution of a non-linear least squares problem NllsProblem.
Fields§
§parameters: Vec<Vec<f64>>Values of the parameters, in the same order as they were added to the problem.
summary: SolverSummarySummary of the solver run.
Auto Trait Implementations§
impl Freeze for NllsProblemSolution
impl RefUnwindSafe for NllsProblemSolution
impl !Send for NllsProblemSolution
impl !Sync for NllsProblemSolution
impl Unpin for NllsProblemSolution
impl UnwindSafe for NllsProblemSolution
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