neuronModels
Collection of neuron model state representations and right-hand side functors.
Types
| Name | Description |
|---|---|
| FHN_RHS | Right-hand side functor for the FitzHugh–Nagumo neuron dynamics. |
| MemTunnerNeuron_RHS | Right-hand side functor for the memristor tunneling neuron model. |
Type Aliases
| Name | Description |
|---|---|
| FHN | State tuple for the FitzHugh–Nagumo model (u, v). |
| MemTunnerNeuron | State tuple for the memristor-based tunneling neuron (Vc, XSV). |
Type Alias Details
FHN
using FHN = StateTuple<float, float>
State tuple for the FitzHugh–Nagumo model (u, v).
MemTunnerNeuron
using MemTunnerNeuron = StateTuple<float, float>
State tuple for the memristor-based tunneling neuron (Vc, XSV).