pub struct KilincBhattMapNeuron {
pub x: f64,
pub theta: f64,
pub k: f64,
pub beta: f64,
pub gamma: f64,
pub theta_spike: f64,
pub x_threshold: f64,
}Expand description
Kilinc-Bhatt 2023 — sigmoid map with adaptive threshold.
Minimal 2D map with built-in spike frequency adaptation via a slow threshold variable. Designed for efficient hardware implementation while retaining biologically relevant dynamics.
x(n+1) = k * sigmoid(x(n) - theta(n)) + I theta(n+1) = beta * theta(n) + gamma * H(x(n) - theta_spike)
H() is the Heaviside step function (spike-triggered increment).
Fields§
§x: f64§theta: f64§k: f64§beta: f64§gamma: f64§theta_spike: f64§x_threshold: f64Implementations§
Trait Implementations§
Source§impl Clone for KilincBhattMapNeuron
impl Clone for KilincBhattMapNeuron
Source§fn clone(&self) -> KilincBhattMapNeuron
fn clone(&self) -> KilincBhattMapNeuron
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KilincBhattMapNeuron
impl Debug for KilincBhattMapNeuron
Auto Trait Implementations§
impl Freeze for KilincBhattMapNeuron
impl RefUnwindSafe for KilincBhattMapNeuron
impl Send for KilincBhattMapNeuron
impl Sync for KilincBhattMapNeuron
impl Unpin for KilincBhattMapNeuron
impl UnsafeUnpin for KilincBhattMapNeuron
impl UnwindSafe for KilincBhattMapNeuron
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