Page MenuHomec4science

plot_gating_kinetics.py
No OneTemporary

File Metadata

Created
Thu, Oct 10, 17:54

plot_gating_kinetics.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author: Theo Lemaire
# @Date: 2016-10-11 20:35:38
# @Email: theo.lemaire@epfl.ch
# @Last Modified by: Theo Lemaire
# @Last Modified time: 2018-03-12 19:44:46
""" Plot the voltage-dependent steady-states and time constants of activation and inactivation
gates of the different ionic currents involved in the neuron's membrane. """
from PointNICE.plt import plotGatingKinetics
from PointNICE.neurons import *
# Instantiate neuron(s)
neurons = [LeechRetzius()]
# Plot gating kinetics for each neuron(s)
for neuron in neurons:
plotGatingKinetics(neuron)

Event Timeline