pub struct ParameterExplorationPlot {
pub x_grid: Array2<f64>,
pub y_grid: Array2<f64>,
pub z_values: Array2<f64>,
pub param_ranges: Vec<(f64, f64)>,
pub param_names: Vec<String>,
pub metadata: PlotMetadata,
}Expand description
Parameter exploration plot for 2D parameter spaces
Fields§
§x_grid: Array2<f64>X parameter grid
y_grid: Array2<f64>Y parameter grid
z_values: Array2<f64>Function values at each grid point
param_ranges: Vec<(f64, f64)>Parameter ranges
param_names: Vec<String>Parameter names
metadata: PlotMetadataPlot metadata
Trait Implementations§
Source§impl Clone for ParameterExplorationPlot
impl Clone for ParameterExplorationPlot
Source§fn clone(&self) -> ParameterExplorationPlot
fn clone(&self) -> ParameterExplorationPlot
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 ParameterExplorationPlot
impl RefUnwindSafe for ParameterExplorationPlot
impl Send for ParameterExplorationPlot
impl Sync for ParameterExplorationPlot
impl Unpin for ParameterExplorationPlot
impl UnwindSafe for ParameterExplorationPlot
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