Update: code cleaned up

This commit is contained in:
nkoch1
2022-11-08 10:09:02 -05:00
parent ce46f8859a
commit 9037e1a016
46 changed files with 229 additions and 1130 deletions

View File

@@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
Functions for Cb Stellate model
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import h5py
import gc
import scipy

View File

@@ -1,3 +1,11 @@
"""
Functions for Cb Stellate with Kv1.1 model
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import h5py
import scipy
import json

View File

@@ -1,3 +1,11 @@
"""
Functions for model from Pospischil et al. 2008 - RS Pyramidal, RS inhibitory, and FS
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import gc
import h5py
import scipy

View File

@@ -1,3 +1,11 @@
"""
Functions for STN model
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import scipy
import json
import copy

View File

@@ -1,3 +1,11 @@
"""
Functions for STN model with Kv1.1
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import scipy
import json
import copy

View File

@@ -1,3 +1,12 @@
"""
General functions used throughout simulation scripts
__author__ = Nils A. Koch
__copyright__ = Copyright 2022, Nils A. Koch
__license__ = MIT
"""
import json
import numpy as np
from numba import njit