Graham Findlay
Graham Findlay
Hi, all. I have never used `neo` directly before, so I apologize if this is just user error. But I have read through docs and code, and I _think_ what...
Checking for negative and positive peaks this way... ``` MNP = find(diff(sign(slope_data)) == 2); MPP = find(diff(sign(slope_data)) == -2); ``` ...fails to properly handle the case where the slope at...
Added a prototype TraceImageViewer to display current source density (or any kind of signal vs time traces) Example:  This is a very quick-and-simple minimal implementation, so there are a...
When writing recordings to zarr, properties of the recording object itself are stored, but properties of the segments are not. For example: ```python import spikeinterface as si recording: ConcatenateSegmentRecording =...
(I had a call with @samuelgarcia this morning about this issue -- filing it here for tracking purposes.) I am revisiting some of my old unit data, which was sorted...