Skip to content
/ rhd Public

A python module for reading Intan RHD2000 files

Notifications You must be signed in to change notification settings

kylerbrown/rhd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RHD

A module for reading Intan RHD2000 files (*.rhd).

Code written by Michael Gibson 17 July 2015

Module-ified by Kyler Brown, 2016.

installation

git clone https://github.com/kylerbrown/rhd.git
cd rhd
python setup.py install

usage

import rhd
# To keep memory usage down, use argument no_floats=True.
# Otherwise, data is loaded as floating point arrays
# (4x the space required).
data = rhd.read_data("file.rhd", no_floats=True)
import matplotlib.pyplot as plt
plt.plot(data['amplifier_data'][:,:1000].T)
plt.show()

About

A python module for reading Intan RHD2000 files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages