forked from NeuralEnsemble/elephant
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Merging "Total spiking probability edges" into elephant (Ne…
…uralEnsemble#560) * Feat: Add basic scaffold for total_spiking_probability_edges * Feat: Add filterpair generation * Feat: Add normalized_cross_correlation * Feat: Add total_spiking_probability_edges * Refactor: Rename filter parameters * Feat: Add function to compute connectivity_matrix * Feat: Combine total_spiking_probability_edges and get_connectivty_matrix * Docs: Explenation why mean values are ommited in NCC * Refactor: Naming conventions * Fix: Extra dimension on delay_matrix * Test: Add test for total_spiking_probability_edges * Fix: Incorrect repo path * Fix Incorrect repo path part 2 * Docs: Add further documentation * docs: Fix typos Co-authored-by: Moritz Kern <[email protected]> * fixed pep8 issue in total_spiking_probability_edges.py * fixed pep8 issue in test_total_spiking_probability_edges.py * convert tests to unittest.TestCase classes * add zenodo info --------- Co-authored-by: Moritz Kern <[email protected]> Co-authored-by: Moritz-Alexander-Kern <[email protected]>
- Loading branch information
1 parent
d046165
commit 6363690
Showing
8 changed files
with
624 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
================================== | ||
Functional connectivity estimation | ||
================================== | ||
|
||
.. automodule:: elephant.functional_connectivity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
""" | ||
Functions for analysing and estimating firing-patterns and connectivity among neurons | ||
in order to better understand the underlying neural-networks and information-flow | ||
between neurons. | ||
Network connectivity estimation | ||
******************************* | ||
.. autosummary:: | ||
:toctree: _toctree/functional_connectivity/ | ||
total_spiking_probability_edges | ||
References | ||
---------- | ||
.. bibliography:: | ||
:keyprefix: functional_connectivity- | ||
:copyright: Copyright 2014-2023 by the Elephant team, see `doc/authors.rst`. | ||
:license: Modified BSD, see LICENSE.txt for details. | ||
""" | ||
|
||
from elephant.functional_connectivity_src.total_spiking_probability_edges import ( | ||
total_spiking_probability_edges, | ||
) | ||
|
||
__all__ = ["total_spiking_probability_edges"] | ||
|
Oops, something went wrong.