Graham Findlay

Results 3 issues of 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: ![spw_viewer_example](https://github.com/NeuralEnsemble/ephyviewer/assets/4753005/9405a989-31c2-4030-bd54-56a73151ac5a) This is a very quick-and-simple minimal implementation, so there are a...