Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

small fix in the docs #331

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/eFeatures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading