Data Import
Read previously recorded data directly into Matlab or Python.
Importing data is easy, just follow these three steps to get started. Extract the zip files into the same folder on your machine.
1. Download the Matlab Tools
2. Add the path to the unzipped tools
SDKPATH = 'path/to/sdk';
addpath(genpath(SDKPATH));
3. Importing data is easy
data = TDTbin2mat('path/to/block');
Download Matlab Tools
Download Example Data
Example Workbooks
Synapse API
Interact with Synapse and TDT hardware during a recording with the cross-platform API.
1. Download the Matlab Tools
2. Add the path to the unzipped tools
SDKPATH = 'path/to/sdk';
addpath(genpath(SDKPATH));
3. Connecting to Synapse is easy
syn = SynapseAPI();
Download Matlab Tools
Example Workbooks
Reading Data Online
The Matlab SDK includes the SynapseLive class for reading data as it is acquired. This is a Windows-only solution.
Download Matlab Tools
Example Workbooks