pub struct DPINeuron {
pub i_mem: f64,
pub i_threshold: f64,
pub i_reset: f64,
pub i_leak: f64,
pub tau: f64,
pub gain: f64,
pub dt: f64,
}Expand description
DPI — Differential Pair Integrator (log-domain analog). Bartolozzi & Indiveri 2007.
Fields§
§i_mem: f64§i_threshold: f64§i_reset: f64§i_leak: f64§tau: f64§gain: f64§dt: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DPINeuron
impl RefUnwindSafe for DPINeuron
impl Send for DPINeuron
impl Sync for DPINeuron
impl Unpin for DPINeuron
impl UnsafeUnpin for DPINeuron
impl UnwindSafe for DPINeuron
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