Page MenuHomec4science

plot_gating_kinetics.py
No OneTemporary

File Metadata

Created
Sat, Apr 27, 10:35

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-08-21 16:07:32
""" 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 PySONIC.plt import plotGatingKinetics
from PySONIC.neurons import *
# Instantiate neuron(s)
neurons = [CorticalLTS()]
# Plot gating kinetics for each neuron(s)
for neuron in neurons:
plotGatingKinetics(neuron)

Event Timeline