Skip to content

Commit bb5435f

Browse files
authored
Merge pull request #7 from siplab-gt/aaravshah
Added contribution names to requested files
2 parents b8e0832 + 2485bb9 commit bb5435f

File tree

3 files changed

+15
-521
lines changed

3 files changed

+15
-521
lines changed

notebooks/mazzoni_data_extrapolation.ipynb

Lines changed: 11 additions & 519 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wslfp"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Weighted Sum Local Field Potentials - Implementation of the proxy method for point neurons from Mazzoni, Lindén et al., 2015"
55
authors = [
66
"Kyle Johnsen <kyle@kjohnsen.org>",

wslfp/amplitude.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ def aussel18_mod(r_um, d_um, L_um=250, sigma=0.3):
2626

2727
def mazzoni15_pop(r_um, d_um, L_um=250, sigma=0.3):
2828
"""The profile of the LFP amplitude extracted from Mazzoni, Lindén et al., 2015,
29-
Figure 2B. See `notebooks/mazzoni_data_extrapolation.ipynb`"""
29+
Figure 2B. See `notebooks/mazzoni_data_extrapolation.ipynb`.
30+
31+
Credit for linear interpolation: Aarav Shah"""
3032
rdf_samples = np.load(resources.files("wslfp") / "mazzoni15-rdf.npy")
3133
pos_interp = LinearNDInterpolator(rdf_samples[:, :2], rdf_samples[:, 2])
3234
d_um_sign = np.sign(d_um)

0 commit comments

Comments
 (0)