(&self)
| 282 | } |
| 283 | |
| 284 | pub fn mp_fit(&self) -> Vec<FitResultRow> { |
| 285 | let mut out = Vec::new(); |
| 286 | for _ in 0..self.n_runs { |
| 287 | let mut worker = self.clone(); |
| 288 | out.extend(worker.single_fit_loop(Some(worker.epsilon))); |
| 289 | } |
| 290 | out |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | pub fn centered_moment(moments: &[f64], order: usize) -> f64 { |