pub struct DelayEmbedding<const W: usize> {
pub tau: usize,
/* private fields */
}Expand description
Delay-coordinate embedding estimator.
Maintains a circular buffer of W residual norms and computes the 2D delay embedding [(x(t), x(t−τ))] across the window.
§Type Parameters
W: Embedding window size (≥ 4, ≤ 64 recommended).
Fields§
§tau: usizeDelay lag τ.
Implementations§
Source§impl<const W: usize> DelayEmbedding<W>
impl<const W: usize> DelayEmbedding<W>
Trait Implementations§
Auto Trait Implementations§
impl<const W: usize> Freeze for DelayEmbedding<W>
impl<const W: usize> RefUnwindSafe for DelayEmbedding<W>
impl<const W: usize> Send for DelayEmbedding<W>
impl<const W: usize> Sync for DelayEmbedding<W>
impl<const W: usize> Unpin for DelayEmbedding<W>
impl<const W: usize> UnsafeUnpin for DelayEmbedding<W>
impl<const W: usize> UnwindSafe for DelayEmbedding<W>
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