The provided code is modeling a Sparse Pyramidal-Interneuron-Network-Gamma (sPING), a common framework in computational neuroscience used to simulate and understand oscillatory networks in the brain, specifically gamma frequency oscillations (typically 30-100 Hz). These oscillations are crucial for various cognitive processes, including attention, perception, and memory.
Neuronal Populations:
Equations and Mechanisms:
dv/dt
) driven by the applied current Iapp
, intrinsic currents (@current
), and stochastic noise (noise*randn(1,N_pop)
).iNa
: Represents sodium (Na+) currents, which are critical for the initiation and propagation of action potentials.iK
: Represents potassium (K+) currents, which are important for repolarization and after-hyperpolarization phases of action potentials.Synaptic Mechanisms:
iGABAa
): Represents inhibitory connections, typically mediated by GABA (gamma-Aminobutyric acid) receptors that increase chloride (Cl-) ion conductance leading to hyperpolarization of the postsynaptic neuron. This mechanism is used for the I→E connections.iAMPA
): Represents excitatory connections mediated by glutamate receptors leading to depolarization. This is implemented for E→I connections.Current/Conductance Parameters:
gNa
, gK
: Maximum conductances for sodium and potassium channels, respectively, affecting action potential dynamics.gSYN
: Synaptic conductance parameters dictating the strength of synaptic connections.Stochastic and Other Parameters:
noise
: Represents random fluctuations that can simulate synaptic background noise prevalent in real neural networks.tauD
: Time constant for decay of synaptic currents, affecting how long the synapses influence post-synaptic neurons after activation.This model provides insights into how excitatory and inhibitory interactions result in rhythmic activities resembling gamma oscillations. These oscillations are critical in cortical processing and have been linked to various neural functions. Additionally, the simulation allows for exploration of how modifications in synaptic and intrinsic properties (e.g., conductances, time constants) can impact network behavior, providing valuable hypotheses for experimental validation.