Skip to content

Commit

Permalink
docs: Fix typos
Browse files Browse the repository at this point in the history
Co-authored-by: Moritz Kern <[email protected]>
  • Loading branch information
zottelsheep and Moritz-Alexander-Kern authored Jun 4, 2023
1 parent 6fc0a6e commit 7eea5fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/bib/elephant.bib
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ @article{de_blasi19_169
doi = {10.1016/j.jneumeth.2018.11.013},
language = {en},
journal = {Journal of Neuroscience Methods},
author = {De Blasi, Stefano and Ciba, Manuel and Bahmer, Andreas and Thielemann, Christiane},
author = {{De Blasi}, Stefano and Ciba, Manuel and Bahmer, Andreas and Thielemann, Christiane},
month = jan,
year = {2019},
pages = {169--181},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def total_spiking_probability_edges(
):
r"""
Use total spiking probability edges (TSPE) to estimate
the funcitional connectivity and delay-times of a neural-network.
the functional connectivity and delay-times of a neural-network.
This algorithm uses a normalized crosscorrelation between pairs of
This algorithm uses a normalized cross correlation between pairs of
spiketrains at different delay-times to get a cross-correlogram.
Afterwards a series of convolutions with multiple edge-filters
on the cross-correlogram are preformed, in order to estimate the
Expand All @@ -30,7 +30,7 @@ def total_spiking_probability_edges(
*Background:*
- On an excitatory connection the spikerate increases and decreases again due to the refractory period which results in lokal maxima in the cross-correlogram followed by downwards slope
- On an excitatory connection the spikerate increases and decreases again due to the refractory period which results in local maxima in the cross-correlogram followed by downwards slope
- On an inhibitory connection the spikerate decreases and after refractory period, increases again which results in lokal minima surrounded by high values in the cross-correlogram.
Expand Down Expand Up @@ -64,10 +64,10 @@ def total_spiking_probability_edges(
Parameters
----------
spiketrains : (N, ) elephant.conversion.BinnedSpikeTrain
spike_trains : (N, ) elephant.conversion.BinnedSpikeTrain
A binned spike train containing all neurons for connectivity estimation
surrounding_window_sizes : List[int], default = [3, 4, 5, 6, 7, 8]
Array of window-sizes for the surroundig area of the point of interesst.
Array of window-sizes for the surrounding area of the point of interest.
observed_window_sizes : List[int], default = [2, 3, 4, 5, 6]
Array of window-sizes for the observed area
crossover_window_sizes : List[int], default = [0]
Expand Down

0 comments on commit 7eea5fe

Please sign in to comment.