minor changes
This commit is contained in:
parent
3aa8eabb6f
commit
4969345986
pointprocesses/lecture
@ -19,7 +19,8 @@ def set_rc():
|
||||
|
||||
def create_spikes(isi=0.08, duration=0.5):
|
||||
times = np.arange(0., duration, isi)
|
||||
times += np.random.randn(len(times)) * (isi / 2.5)
|
||||
rng = np.random.RandomState(57281)
|
||||
times += rng.randn(len(times)) * (isi / 2.5)
|
||||
times = np.delete(times, np.nonzero(times < 0))
|
||||
times = np.delete(times, np.nonzero(times > duration))
|
||||
times = np.sort(times)
|
||||
|
@ -242,7 +242,7 @@ Abbildung \ref{psthfig} n\"aher erl\"autert.
|
||||
\begin{figure}[tp]
|
||||
\includegraphics[width=\columnwidth]{firingrates}
|
||||
\titlecaption{Verschiedene Methoden die zeitabh\"angige Feuerrate
|
||||
zu bestimmen.}{A)} Rasterplot einer einzelnen neuronalen
|
||||
zu bestimmen.}{\textbf{A)} Rasterplot einer einzelnen neuronalen
|
||||
Antwort. Jeder vertikale Strich notiert den Zeitpunkt eines
|
||||
Aktionspotentials. \textbf{B)} Feurerrate aus der instantanen
|
||||
Feuerrate bestimmt. \textbf{C)} klassisches PSTH mit der Binning
|
||||
|
Reference in New Issue
Block a user