pub struct ConvergenceVisualizationEngine {
pub convergence_visualizer: ConvergenceVisualizer,
pub error_engine: ErrorVisualizationEngine,
pub performance_tracker: PerformanceTracker,
}Expand description
Visualization engine that combines error and convergence analysis
Fields§
§convergence_visualizer: ConvergenceVisualizerConvergence visualizer
error_engine: ErrorVisualizationEngineError visualization engine
performance_tracker: PerformanceTrackerPerformance tracking
Implementations§
Source§impl ConvergenceVisualizationEngine
impl ConvergenceVisualizationEngine
Sourcepub fn track_metric(&mut self, metricname: &str, value: f64, time: f64)
pub fn track_metric(&mut self, metricname: &str, value: f64, time: f64)
Track metric over time
Sourcepub fn create_convergence_plot(
&self,
residuals: &Array1<f64>,
algorithm_name: &str,
) -> IntegrateResult<ConvergencePlot>
pub fn create_convergence_plot( &self, residuals: &Array1<f64>, algorithm_name: &str, ) -> IntegrateResult<ConvergencePlot>
Create comprehensive convergence analysis
Sourcepub fn create_multi_metric_plot(
&self,
metrics: &[(String, Array1<f64>)],
) -> IntegrateResult<MultiMetricConvergencePlot>
pub fn create_multi_metric_plot( &self, metrics: &[(String, Array1<f64>)], ) -> IntegrateResult<MultiMetricConvergencePlot>
Create multi-metric analysis
Sourcepub fn create_step_size_analysis(
&self,
step_sizes: &Array1<f64>,
errors: &Array1<f64>,
method_name: &str,
) -> IntegrateResult<StepSizeAnalysisPlot>
pub fn create_step_size_analysis( &self, step_sizes: &Array1<f64>, errors: &Array1<f64>, method_name: &str, ) -> IntegrateResult<StepSizeAnalysisPlot>
Analyze step size effects
Trait Implementations§
Source§impl Clone for ConvergenceVisualizationEngine
impl Clone for ConvergenceVisualizationEngine
Source§fn clone(&self) -> ConvergenceVisualizationEngine
fn clone(&self) -> ConvergenceVisualizationEngine
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 ConvergenceVisualizationEngine
impl RefUnwindSafe for ConvergenceVisualizationEngine
impl Send for ConvergenceVisualizationEngine
impl Sync for ConvergenceVisualizationEngine
impl Unpin for ConvergenceVisualizationEngine
impl UnwindSafe for ConvergenceVisualizationEngine
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