pub struct AttractorResult {
pub correlation_dimension: f32,
pub koopman_proxy: f32,
pub state: NoiseAttractorState,
pub n_pairs: usize,
}Expand description
Output of an attractor analysis pass.
Fields§
§correlation_dimension: f32Grassberger-Procaccia correlation dimension estimate D₂. Range [0, 2] for 2-dimensional delay embedding.
koopman_proxy: f32Koopman proxy: variance-to-mean ratio of embedding norms. High (> 1.0) → stochastic; Low (< 0.3) → structured modes.
state: NoiseAttractorStateInferred attractor state classification.
n_pairs: usizeNumber of delay-coordinate pairs used for D₂ estimation.
Trait Implementations§
Source§impl Clone for AttractorResult
impl Clone for AttractorResult
Source§fn clone(&self) -> AttractorResult
fn clone(&self) -> AttractorResult
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 moreSource§impl Debug for AttractorResult
impl Debug for AttractorResult
impl Copy for AttractorResult
Auto Trait Implementations§
impl Freeze for AttractorResult
impl RefUnwindSafe for AttractorResult
impl Send for AttractorResult
impl Sync for AttractorResult
impl Unpin for AttractorResult
impl UnsafeUnpin for AttractorResult
impl UnwindSafe for AttractorResult
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