spike_in_interval¶
- data_base.analyze.spike_detection.spike_in_interval(st, tmin, tmax)¶
- Check whether each trial contains at least one spike within the specified interval - Parameters:¶
 - Example: - >>> st = np.array([[0.1, 0.2, 0.3], [0.2, 0.3, 0.4], [0.3, 0.4, 0.5]]) >>> spike_in_interval(st, 0.4, 0.3) [False, True, True]
Documentation unclear, incomplete, broken or wrong? Let us know