pub struct ParameterExplorationResult {
pub exploration_points: Vec<Array1<f64>>,
pub response_values: Vec<Array1<f64>>,
pub parameter_grid: Vec<Array1<f64>>,
pub convergence_history: Vec<Array1<f64>>,
pub exploration_method: ExplorationMethod,
pub optimization_metrics: ExplorationMetrics,
}Expand description
Results of parameter exploration
Fields§
§exploration_points: Vec<Array1<f64>>Explored parameter points
response_values: Vec<Array1<f64>>System responses at each point
parameter_grid: Vec<Array1<f64>>Full parameter grid (including failed evaluations)
convergence_history: Vec<Array1<f64>>Convergence history for iterative methods
exploration_method: ExplorationMethodExploration method used
optimization_metrics: ExplorationMetricsOptimization metrics
Trait Implementations§
Source§impl Clone for ParameterExplorationResult
impl Clone for ParameterExplorationResult
Source§fn clone(&self) -> ParameterExplorationResult
fn clone(&self) -> ParameterExplorationResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParameterExplorationResult
impl RefUnwindSafe for ParameterExplorationResult
impl Send for ParameterExplorationResult
impl Sync for ParameterExplorationResult
impl Unpin for ParameterExplorationResult
impl UnwindSafe for ParameterExplorationResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more