| | 1 | """ |
|---|
| | 2 | NeuroTools |
|---|
| | 3 | ========== |
|---|
| | 4 | |
|---|
| | 5 | NeuroTools is not a neural simulator, but rather a collection of tools |
|---|
| | 6 | to support all tasks associated with a neural simulation project which |
|---|
| | 7 | are not handled by the simulation engine. |
|---|
| | 8 | |
|---|
| | 9 | For more information see: |
|---|
| | 10 | |
|---|
| | 11 | http://neuralensemble.org/NeuroTools |
|---|
| | 12 | |
|---|
| | 13 | |
|---|
| | 14 | |
|---|
| | 15 | Available subpackages |
|---|
| | 16 | --------------------- |
|---|
| | 17 | |
|---|
| | 18 | NeuroTools functionality is modularized as follows: |
|---|
| | 19 | |
|---|
| | 20 | signals - provides core classes for manipulation of spike trains and analog signals. |
|---|
| | 21 | spike2 - offers an easy way for reading data from CED's Spike2 Son files. |
|---|
| | 22 | parameters - contains classes for managing large, hierarchical parameter sets. |
|---|
| | 23 | analysis - cross-correlation, tuning curves, frequency spectrum, etc. |
|---|
| | 24 | stgen - various stochastic process generators relevant for Neuroscience |
|---|
| | 25 | (OU, poisson, inhomogenous gamma, ...). |
|---|
| | 26 | utilities - miscellaneous stuff, like SRB access. |
|---|
| | 27 | io - NeuroTools support for reading and writing of files in various formats. |
|---|
| | 28 | plotting - routines for plotting and visualization. |
|---|
| | 29 | |
|---|
| | 30 | |
|---|
| | 31 | Sub-package specific documentation is available by importing the |
|---|
| | 32 | sub-package, and requesting help on it: |
|---|
| | 33 | |
|---|
| | 34 | >>> import NeuroTools.signals |
|---|
| | 35 | >>> help(NeuroTools.signals) |
|---|
| | 36 | |
|---|
| | 37 | |
|---|
| | 38 | """ |
|---|
| | 39 | |
|---|
| | 40 | |
|---|
| | 41 | |
|---|