-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: add new neuralynx testing dataset with associated .mat files (#111)
* ENH: add new Neuralynx testing dataset * Add README.md * increment version.txt * ENH add links to MATLAB software sites in readme
- Loading branch information
1 parent
0decea2
commit a3f4dd7
Showing
36 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,34 @@ | ||
# Author: Kristijan Armeni | ||
--- | ||
|
||
Author: Kristijan Armeni | ||
|
||
--- | ||
|
||
# Author: Kristijan Armeni | ||
|
||
This folder contains unconnected recording (i.e. not attached to a patient) with the [Neuralynx](https://neuralynx.fh-co.com/) acquisition system. The recording contributed by Ivan Skelin, Krembil Research Institute, University of Toronto. | ||
|
||
This folder contains unconnected recording (i.e. not attached to a patient) with the [Neuralynx](https://neuralynx.fh-co.com/) acquisition system. | ||
The recording kindly contributed by Ivan Skelin, Krembil Research Institute, University of Toronto. | ||
|
||
Folder contents: | ||
- 10 `*.ncs` files/channels (continuously sampled signals) | ||
- 10 `*.nse` files/channels (spike snapshot files; likely empty since the recording is disconnected and no spikes were produced) | ||
- 1 `*.nev` file (events file) | ||
|
||
folder size: | ||
```bash | ||
du -h neuralynx | ||
504K neuralynx | ||
``` | ||
- 5 `.ncs` files (continuously sampled signals, 2Khz sampling rate, except `LAHCu1.ncs` which is at 32Khz) | ||
- 5 `.mat` files (.mat version of .ncs files) | ||
- 1 `.nev` file (events file) | ||
|
||
The 3 .ncs files (`LAHC1.ncs, LAHC2.ncs, LAHC3.ncs`) should represent an seeg signal. `xAIR1.ncs` and `xEKG1.ncs` represent a potential non-seeg modality (airflow and EKG in this case). | ||
|
||
Folder size: 1MB | ||
For more info about the file formats, see: [Neuralynx data file formats](https://support.neuralynx.com/hc/en-us/articles/360040444811-TechTip-Neuralynx-Data-File-Formats) | ||
|
||
## MATLAB reader used | ||
|
||
The `.mat` files were created via the `Nlx2MatCSC.m` (.ncs files) and `Nlx2EV.mat` (.nev file). See project page: https://www.urut.ch/new/serendipity/index.php?/pages/nlxtomatlab.html. Available at: https://neuralynx.fh-co.com/research-software/#file-converters-&-utilities | ||
|
||
Example usage: | ||
|
||
For more info about the file formats, see: [Neuralynx data file formats]( https://support.neuralynx.com/hc/en-us/articles/360040444811-TechTip-Neuralynx-Data-File-Formats) | ||
```matlab | ||
% for csc files | ||
[Timestamps, ChannelNumbers, SampleFrequencies, NumberOfValidSamples, Samples, Header] = Nlx2MatCSC('LAHC1.ncs', [1 1 1 1 1] , 1, 1, 1); | ||
%for events files | ||
[Timestamps, EventIDs, TTLs, Extras, EventStrings, Header] = Nlx2MatEV('Events.nev', [1 1 1 1 1], 1, 1, []); | ||
``` |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.149 | ||
0.150 |