https://github.com/NikVard/memstim-hh
Tip revision: 0b0be3e6f4a785b49b6b19f3af9c1d2718852a47 authored by NikVard on 14 February 2023, 10:07:04 UTC
[FIX] modified parallel_run2.sh
[FIX] modified parallel_run2.sh
Tip revision: 0b0be3e
filter_equations.py
"""
--------------------------------------------------------------------------------
Date: 11/10/2021
@author: Nikolaos Vardalakis
--------------------------------------------------------------------------------
Implementation Notes
--------------------------------------------------------------------------------
| 1: The simplest (dumbest) way to get the firing rate of a population of neurons is to low-pass filter the spikes it produces. This implementation is condoned by @adam here: https://brian.discourse.group/t/how-can-i-get-the-population-firing-rate-from-a-spiking-hh-network-during-simulation/496
| 2: A demo of this approach is shown in the jupyter notebook 'feedback.ipynb'
"""
# Spikes-2-Rates
firing_rate_filter_eqs = '''
dY/dt = -Y/tauFR : 1/second
drive = Y/Hz : 1
'''
