From 71d12df774717c75165fbe013c3b4ee2c23dae1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaquier=20Aur=C3=A9lien=20Tristan?= Date: Tue, 21 Nov 2023 17:03:22 +0100 Subject: [PATCH] small fix in the docs --- docs/source/eFeatures.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/eFeatures.rst b/docs/source/eFeatures.rst index f4a7e004..95a20db4 100644 --- a/docs/source/eFeatures.rst +++ b/docs/source/eFeatures.rst @@ -45,14 +45,14 @@ Time from the start of the stimulus to the maximum of the second peak `LibV5`_ : inv_time_to_first_spike ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1.0 over time to first spike; returns 0 when no spike +1.0 over time to first spike (times 1000 to convert it to Hz); returns 0 when no spike - **Required features**: time_to_first_spike - **Units**: Hz - **Pseudocode**: :: if len(time_to_first_spike) > 0: - inv_time_to_first_spike = 1.0 / time_to_first_spike[0] + inv_time_to_first_spike = 1000.0 / time_to_first_spike[0] else: inv_time_to_first_spike = 0